From f9e68da5ef304505e27c60db55aefde034996ff6 Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Thu, 5 Apr 2018 16:07:35 +0200 Subject: [PATCH] migrate to .NET Standard 2.0 and remove old examples --- .../PocketSharp.UWP/PocketSharp.UWP.csproj | 10 +- .../PocketSharp.UWP.nuget.props | 12 +- .../PocketSharp.UWP.nuget.targets | 12 +- .../PocketSharp.UWP/project.lock.json | 27342 ++-------------- PocketSharp.Examples/PocketSharp.WP8/App.xaml | 10 - .../PocketSharp.WP8/App.xaml.cs | 246 - .../PocketSharp.WP8/Assets/AlignmentGrid.png | Bin 9042 -> 0 bytes .../Assets/ApplicationIcon.png | Bin 3392 -> 0 bytes .../Assets/Tiles/FlipCycleTileLarge.png | Bin 9930 -> 0 bytes .../Assets/Tiles/FlipCycleTileMedium.png | Bin 9070 -> 0 bytes .../Assets/Tiles/FlipCycleTileSmall.png | Bin 3674 -> 0 bytes .../Assets/Tiles/IconicTileMediumLarge.png | Bin 4937 -> 0 bytes .../Assets/Tiles/IconicTileSmall.png | Bin 3724 -> 0 bytes .../PocketSharp.WP8/DetailsPage.xaml | 44 - .../PocketSharp.WP8/DetailsPage.xaml.cs | 55 - .../PocketSharp.WP8/LocalizedStrings.cs | 14 - .../PocketSharp.WP8/MainPage.xaml | 46 - .../PocketSharp.WP8/MainPage.xaml.cs | 46 - .../PocketSharp.WP8/PocketSharp.WP8.csproj | 217 - .../Properties/AppManifest.xml | 6 - .../Properties/AssemblyInfo.cs | 37 - .../Properties/WMAppManifest.xml | 38 - .../Resources/AppResources.Designer.cs | 138 - .../Resources/AppResources.resx | 140 - .../SampleData/MainViewModelSampleData.xaml | 16 - .../ViewModels/ItemViewModel.cs | 109 - .../ViewModels/MainViewModel.cs | 108 - .../PocketSharp.WP8/app.config | 15 - .../PocketSharp.WP8/packages.config | 6 - PocketSharp.Examples/PocketSharp.Wpf/App.xaml | 8 - .../PocketSharp.Wpf/App.xaml.cs | 16 - .../PocketSharp.Wpf/MainWindow.xaml | 18 - .../PocketSharp.Wpf/MainWindow.xaml.cs | 61 - .../PocketSharp.Wpf/PocketSharp.Wpf.csproj | 144 - .../Properties/AssemblyInfo.cs | 55 - .../Properties/Resources.Designer.cs | 63 - .../PocketSharp.Wpf/Properties/Resources.resx | 117 - .../Properties/Settings.Designer.cs | 26 - .../Properties/Settings.settings | 7 - PocketSharp.Examples/PocketSharp.Wpf/Site.cs | 14 - .../PocketSharp.Wpf/app.config | 12 - .../PocketSharp.Wpf/packages.config | 7 - PocketSharp.Tests/PocketSharp.Tests.csproj | 6 - PocketSharp.sln | 83 +- PocketSharp/PocketSharp.csproj | 151 +- PocketSharp/PocketSharp.nuspec | 23 - PocketSharp/Properties/AssemblyInfo.cs | 26 - PocketSharp/packages.config | 7 - 48 files changed, 3236 insertions(+), 26275 deletions(-) delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/App.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/App.xaml.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/AlignmentGrid.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/ApplicationIcon.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/FlipCycleTileLarge.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/FlipCycleTileMedium.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/FlipCycleTileSmall.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/IconicTileMediumLarge.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/IconicTileSmall.png delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/DetailsPage.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/DetailsPage.xaml.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/LocalizedStrings.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/PocketSharp.WP8.csproj delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Properties/AppManifest.xml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Properties/AssemblyInfo.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Properties/WMAppManifest.xml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.Designer.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.resx delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/SampleData/MainViewModelSampleData.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/ViewModels/ItemViewModel.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/app.config delete mode 100644 PocketSharp.Examples/PocketSharp.WP8/packages.config delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/App.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/App.xaml.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/PocketSharp.Wpf.csproj delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Properties/AssemblyInfo.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Properties/Resources.Designer.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Properties/Resources.resx delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Properties/Settings.Designer.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Properties/Settings.settings delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/Site.cs delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/app.config delete mode 100644 PocketSharp.Examples/PocketSharp.Wpf/packages.config delete mode 100644 PocketSharp/PocketSharp.nuspec delete mode 100644 PocketSharp/Properties/AssemblyInfo.cs delete mode 100644 PocketSharp/packages.config diff --git a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.csproj b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.csproj index 7cbd314..1dfff81 100644 --- a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.csproj +++ b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.csproj @@ -1,4 +1,4 @@ - + @@ -11,8 +11,8 @@ PocketSharp.UWP en-US UAP - 10.0.15063.0 - 10.0.15063.0 + 10.0.16299.0 + 10.0.16299.0 14 512 {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} @@ -131,7 +131,7 @@ - {817200c3-a327-4e35-9b5f-63a51c088577} + {0e22926c-7244-4a17-923c-84b46f5149c0} PocketSharp @@ -146,4 +146,4 @@ --> - + \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.props b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.props index 8a405de..71e96f2 100644 --- a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.props +++ b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.props @@ -13,9 +13,13 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - + + + + + + + + \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.targets b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.targets index 6278624..4176878 100644 --- a/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.targets +++ b/PocketSharp.Examples/PocketSharp.UWP/PocketSharp.UWP.nuget.targets @@ -4,10 +4,14 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + - - - - + + + + \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.UWP/project.lock.json b/PocketSharp.Examples/PocketSharp.UWP/project.lock.json index 17962fa..e4eddfa 100644 --- a/PocketSharp.Examples/PocketSharp.UWP/project.lock.json +++ b/PocketSharp.Examples/PocketSharp.UWP/project.lock.json @@ -1,242 +1,58 @@ { "version": 3, "targets": { - "UAP,Version=v10.0.15063": { + "UAP,Version=v10.0.16299": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" + }, + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Core.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Net.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Numerics.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Windows.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/mscorlib.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -248,153 +64,189 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -410,2255 +262,87 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": { - "assetType": "runtime", - "rid": "win7" - } - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/_._": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/_._": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - }, - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8" - } - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "assetType": "runtime", - "rid": "win8" - } - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Threading.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": { - "assetType": "runtime", - "rid": "aot" - } + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-arm": { + "UAP,Version=v10.0.16299/win10-arm": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -2670,155 +354,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -2834,2344 +553,261 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.any.System.Collections/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win8-arm.runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - } - }, - "runtime.win7.System.Private.Uri/4.3.0": { "type": "package", "compile": { "ref/netstandard/_._": {} }, "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll": {} + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-arm/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win8-arm/native/System.Private.CoreLib.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/mscorlib.ni.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {}, - "runtimes/win8-arm/native/sos.dll": {} + "runtimes/win10-arm/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, - "runtime.win8-arm.runtime.native.System.IO.Compression/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "native": { - "runtimes/win8-arm/native/clrcompression.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "System.AppContext/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-arm-aot": { + "UAP,Version=v10.0.16299/win10-arm-aot": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.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.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -5183,155 +819,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -5347,2381 +1018,262 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.aot.System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - } - }, - "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "runtime": { - "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.3.0": { "type": "package", "compile": { "ref/netstandard/_._": {} }, "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win8-arm-aot/lib/netstandard1.0/_._": {} + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-arm-aot/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win8-arm-aot/native/_._": {} + "runtimes/win10-arm-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, - "System.AppContext/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "System.Buffers/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "System.Collections/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.aot.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.aot.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.aot.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.aot.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-x64": { + "UAP,Version=v10.0.16299/win10-x64": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -7733,155 +1285,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -7897,2353 +1484,261 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.any.System.Collections/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7-x64.runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "compile": { "ref/netstandard/_._": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x64/native/clrjit.dll": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} }, "runtime": { - "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {} + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x64/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win7-x64/native/System.Private.CoreLib.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/mscorlib.ni.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {}, - "runtimes/win7-x64/native/sos.dll": {} + "runtimes/win10-x64/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, - "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "native": { - "runtimes/win7-x64/native/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-x64-aot": { + "UAP,Version=v10.0.16299/win10-x64-aot": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.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.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -10255,155 +1750,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -10419,2387 +1949,262 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.aot.System.Collections/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "runtime.win10-x64-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "compile": { "ref/netstandard/_._": {} - } - }, - "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "runtime": { - "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x64-aot/native/_._": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} }, "runtime": { - "runtimes/win7-x64-aot/lib/netstandard1.0/_._": {} + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x64-aot/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win7-x64-aot/native/_._": {} + "runtimes/win10-x64-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, - "runtime.win7.System.Private.Uri/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "System.AppContext/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.aot.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.aot.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.aot.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.aot.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-x86": { + "UAP,Version=v10.0.16299/win10-x86": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -12811,155 +2216,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -12975,2353 +2415,261 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.any.System.Collections/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7-x86.runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "compile": { "ref/netstandard/_._": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x86/native/clrjit.dll": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} }, "runtime": { - "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {} + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x86/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win7-x86/native/System.Private.CoreLib.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/mscorlib.ni.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {}, - "runtimes/win7-x86/native/sos.dll": {} - } - }, - "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "native": { - "runtimes/win7-x86/native/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} + "runtimes/win10-x86/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } }, - "UAP,Version=v10.0.15063/win10-x86-aot": { + "UAP,Version=v10.0.16299/win10-x86-aot": { "Fody/3.0.0": { "type": "package", "build": { "build/Fody.targets": {} } }, - "Microsoft.CSharp/4.3.0": { + "Microsoft.Net.Native.Compiler/2.0.3": { "type": "package", "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x64": "1.7.0", - "Microsoft.Net.Native.SharedLibrary-x86": "1.7.0" + "Microsoft.Net.Native.SharedLibrary-arm": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x64": "2.0.0", + "Microsoft.Net.Native.SharedLibrary-x86": "2.0.0" }, "build": { "build/Microsoft.Net.Native.Compiler.props": {}, "build/Microsoft.Net.Native.Compiler.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} } }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { "type": "package", "build": { "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} } }, - "Microsoft.NETCore/5.0.2": { + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2" }, - "runtime": { - "lib/netstandard1.0/_._": {} + "build": { + "build/Microsoft.Net.UWPCoreRuntimeSdk.props": {} } }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.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.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/2.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -15333,155 +2681,190 @@ "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.7.3", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.2", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.2", - "System.ServiceModel.Http": "4.1.1", - "System.ServiceModel.NetTcp": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.ServiceModel.Security": "4.0.2", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11", + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Net.Native.Compiler": "2.0.3", + "Microsoft.Net.UWPCoreRuntimeSdk": "2.1.2", + "NETStandard.Library": "2.0.1", "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform": "6.0.8" }, "compile": { - "ref/netcore50/_._": {} + "ref/uap10.0.15138/Microsoft.CSharp.dll": {}, + "ref/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "ref/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "ref/uap10.0.15138/System.AppContext.dll": {}, + "ref/uap10.0.15138/System.Buffers.dll": {}, + "ref/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "ref/uap10.0.15138/System.Collections.Immutable.dll": {}, + "ref/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "ref/uap10.0.15138/System.Collections.Specialized.dll": {}, + "ref/uap10.0.15138/System.Collections.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "ref/uap10.0.15138/System.ComponentModel.dll": {}, + "ref/uap10.0.15138/System.Configuration.dll": {}, + "ref/uap10.0.15138/System.Console.dll": {}, + "ref/uap10.0.15138/System.Core.dll": {}, + "ref/uap10.0.15138/System.Data.Common.dll": {}, + "ref/uap10.0.15138/System.Data.SqlClient.dll": {}, + "ref/uap10.0.15138/System.Data.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "ref/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "ref/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "ref/uap10.0.15138/System.Drawing.dll": {}, + "ref/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "ref/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "ref/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "ref/uap10.0.15138/System.Globalization.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "ref/uap10.0.15138/System.IO.Compression.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "ref/uap10.0.15138/System.IO.FileSystem.dll": {}, + "ref/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "ref/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "ref/uap10.0.15138/System.IO.Pipes.dll": {}, + "ref/uap10.0.15138/System.IO.Ports.dll": {}, + "ref/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "ref/uap10.0.15138/System.IO.dll": {}, + "ref/uap10.0.15138/System.Linq.Expressions.dll": {}, + "ref/uap10.0.15138/System.Linq.Parallel.dll": {}, + "ref/uap10.0.15138/System.Linq.Queryable.dll": {}, + "ref/uap10.0.15138/System.Linq.dll": {}, + "ref/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "ref/uap10.0.15138/System.Net.Http.dll": {}, + "ref/uap10.0.15138/System.Net.HttpListener.dll": {}, + "ref/uap10.0.15138/System.Net.Mail.dll": {}, + "ref/uap10.0.15138/System.Net.NameResolution.dll": {}, + "ref/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "ref/uap10.0.15138/System.Net.Ping.dll": {}, + "ref/uap10.0.15138/System.Net.Primitives.dll": {}, + "ref/uap10.0.15138/System.Net.Requests.dll": {}, + "ref/uap10.0.15138/System.Net.Security.dll": {}, + "ref/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "ref/uap10.0.15138/System.Net.Sockets.dll": {}, + "ref/uap10.0.15138/System.Net.WebClient.dll": {}, + "ref/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "ref/uap10.0.15138/System.Net.WebProxy.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "ref/uap10.0.15138/System.Net.WebSockets.dll": {}, + "ref/uap10.0.15138/System.Net.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "ref/uap10.0.15138/System.Numerics.dll": {}, + "ref/uap10.0.15138/System.ObjectModel.dll": {}, + "ref/uap10.0.15138/System.Reflection.Context.dll": {}, + "ref/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "ref/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "ref/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "ref/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "ref/uap10.0.15138/System.Reflection.dll": {}, + "ref/uap10.0.15138/System.Resources.Reader.dll": {}, + "ref/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "ref/uap10.0.15138/System.Resources.Writer.dll": {}, + "ref/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "ref/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "ref/uap10.0.15138/System.Runtime.Handles.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "ref/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "ref/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "ref/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "ref/uap10.0.15138/System.Runtime.dll": {}, + "ref/uap10.0.15138/System.Security.AccessControl.dll": {}, + "ref/uap10.0.15138/System.Security.Claims.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "ref/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "ref/uap10.0.15138/System.Security.Principal.dll": {}, + "ref/uap10.0.15138/System.Security.SecureString.dll": {}, + "ref/uap10.0.15138/System.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "ref/uap10.0.15138/System.ServiceModel.dll": {}, + "ref/uap10.0.15138/System.ServiceProcess.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "ref/uap10.0.15138/System.Text.Encoding.dll": {}, + "ref/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "ref/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "ref/uap10.0.15138/System.Threading.Tasks.dll": {}, + "ref/uap10.0.15138/System.Threading.Thread.dll": {}, + "ref/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "ref/uap10.0.15138/System.Threading.Timer.dll": {}, + "ref/uap10.0.15138/System.Threading.dll": {}, + "ref/uap10.0.15138/System.Transactions.Local.dll": {}, + "ref/uap10.0.15138/System.Transactions.dll": {}, + "ref/uap10.0.15138/System.ValueTuple.dll": {}, + "ref/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "ref/uap10.0.15138/System.Web.dll": {}, + "ref/uap10.0.15138/System.Windows.dll": {}, + "ref/uap10.0.15138/System.Xml.Linq.dll": {}, + "ref/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "ref/uap10.0.15138/System.Xml.Serialization.dll": {}, + "ref/uap10.0.15138/System.Xml.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XPath.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "ref/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "ref/uap10.0.15138/System.Xml.dll": {}, + "ref/uap10.0.15138/System.dll": {}, + "ref/uap10.0.15138/WindowsBase.dll": {}, + "ref/uap10.0.15138/mscorlib.dll": {}, + "ref/uap10.0.15138/netstandard.dll": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { + "NETStandard.Library/2.0.1": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} + "lib/netstandard1.0/_._": {} }, "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + "lib/netstandard1.0/_._": {} }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} } }, "Newtonsoft.Json/11.0.2": { "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Runtime.Serialization.Formatters": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, "compile": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/netstandard1.3/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, "PropertyChanged.Fody/2.4.0": { @@ -15497,2199 +2880,208 @@ "lib/netstandard1.0/PropertyChanged.dll": {} } }, - "runtime.aot.System.Collections/4.3.0": { + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} + "build": { + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, - "runtime.aot.System.Diagnostics.Tools/4.3.0": { + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} + "build": { + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "runtime.win10-x86-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "type": "package", "compile": { "ref/netstandard/_._": {} - } - }, - "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "runtime": { - "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x86-aot/native/_._": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} }, "runtime": { - "runtimes/win7-x86-aot/lib/netstandard1.0/_._": {} + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.CSharp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.VisualBasic.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/Microsoft.Win32.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.AppContext.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Buffers.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Concurrent.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Immutable.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.NonGeneric.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.Specialized.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Collections.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Annotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Composition.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.DataAnnotations.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.EventBasedAsync.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.TypeConverter.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ComponentModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Configuration.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Console.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Core.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.Common.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.SqlClient.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Data.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Contracts.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Debug.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.DiagnosticSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.FileVersionInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Process.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.StackTrace.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TextWriterTraceListener.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tools.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.TraceSource.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Diagnostics.Tracing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Drawing.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Dynamic.Runtime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Calendars.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Globalization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.ZipFile.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Compression.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.DriveInfo.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.Watcher.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.FileSystem.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.IsolatedStorage.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.MemoryMappedFiles.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Pipes.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.Ports.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.UnmanagedMemoryStream.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.IO.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Expressions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Parallel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.Queryable.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.Rtc.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Http.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.HttpListener.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Mail.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NameResolution.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.NetworkInformation.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Ping.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Requests.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.ServicePoint.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.Sockets.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebClient.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebHeaderCollection.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebProxy.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.Client.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.WebSockets.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Net.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.Vectors.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Numerics.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ObjectModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.DataContractSerialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Reflection.Metadata.Ecma335.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.ServiceModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Uri.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Private.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Context.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.DispatchProxy.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.ILGeneration.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.Lightweight.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Emit.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Metadata.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.TypeExtensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Reflection.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Reader.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.ResourceManager.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Resources.Writer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.CompilerServices.VisualC.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Handles.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.RuntimeInformation.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.InteropServices.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Numerics.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Formatters.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Json.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.Serialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.WindowsRuntime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Runtime.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.AccessControl.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Claims.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Algorithms.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Cng.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Csp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Encoding.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Cryptography.X509Certificates.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.Windows.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.Principal.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.SecureString.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Duplex.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Http.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.NetTcp.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Primitives.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Security.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.Web.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceModel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ServiceProcess.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.CodePages.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.Encoding.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Text.RegularExpressions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Overlapped.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Dataflow.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Extensions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.Parallel.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Tasks.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Thread.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.ThreadPool.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.Timer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Threading.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.Local.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Transactions.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.ValueTuple.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.HttpUtility.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Web.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Windows.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Linq.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.ReaderWriter.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.Serialization.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.XDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XPath.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlDocument.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.XmlSerializer.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.Xml.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/System.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/WindowsBase.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/mscorlib.dll": {}, + "runtimes/win10-x86-aot/lib/uap10.0.15138/netstandard.dll": {} }, "native": { - "runtimes/win7-x86-aot/native/_._": {} + "runtimes/win10-x86-aot/nativeassets/uap10.0.15138/clrcompression.dll": {} } }, - "runtime.win7.System.Private.Uri/4.3.0": { + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Buffers.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Collections": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.aot.System.IO": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.WindowsRuntime": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.win7.System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.aot.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.aot.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {} - }, - "runtime": { - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.1", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.1": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.2": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.1" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.aot.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/_._": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.aot.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + "build": { + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props": {}, + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets": {} } }, "PocketSharp/1.0.0": { - "type": "project" + "type": "project", + "framework": ".NETStandard,Version=v2.0", + "dependencies": { + "Newtonsoft.Json": "11.0.2" + } } } }, @@ -17736,69 +3128,12 @@ "netstandardtask/Mono.Cecil.pdb" ] }, - "Microsoft.CSharp/4.3.0": { - "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "Microsoft.Net.Native.Compiler/2.0.3": { + "sha512": "EekTfKp3VRWglAN6MLVInKCt7Mf6tDhhilCkpYwpDTE7fey9dM+eJc8xr6TeKRHq+0hWJ6B4fFuChF2a75uCPQ==", "type": "package", - "path": "microsoft.csharp/4.3.0", + "path": "microsoft.net.native.compiler/2.0.3", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.3.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Net.Native.Compiler/1.7.3": { - "sha512": "ed0kCs6Gxfw2ZGf34eqO8cwaD16Ll1FKw+jBfGevdiHqc2kTwux9yqkHwhe9WP8jzSbuZX3o4y3wMUUkz5gSeg==", - "type": "package", - "path": "microsoft.net.native.compiler/1.7.3", - "files": [ - "Microsoft.Net.Native.Compiler.1.7.3.nupkg.sha512", + "Microsoft.Net.Native.Compiler.2.0.3.nupkg.sha512", "Microsoft.Net.Native.Compiler.nuspec", "build/Microsoft.Net.Native.Compiler.props", "build/Microsoft.Net.Native.Compiler.targets", @@ -17836,7 +3171,7 @@ "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/install.ps1", "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/uninstall.ps1", "tools/Runtime/arm/CommandProvider.dll", - "tools/Runtime/arm/Microsoft.NET.Native.Runtime.1.7.appx", + "tools/Runtime/arm/Microsoft.NET.Native.Runtime.2.0.appx", "tools/Runtime/arm/SymbolProvider.dll", "tools/Runtime/arm/mrt100_app.pdb", "tools/Runtime/arm/mrt100dac_winarm.dll", @@ -17852,7 +3187,7 @@ "tools/Runtime/arm/mrt100sos_x86.dll", "tools/Runtime/arm/msdia120.dll", "tools/Runtime/x64/CommandProvider.dll", - "tools/Runtime/x64/Microsoft.NET.Native.Runtime.1.7.appx", + "tools/Runtime/x64/Microsoft.NET.Native.Runtime.2.0.appx", "tools/Runtime/x64/SymbolProvider.dll", "tools/Runtime/x64/mrt100_app.pdb", "tools/Runtime/x64/mrt100dac_winamd64.dll", @@ -17862,7 +3197,7 @@ "tools/Runtime/x64/mrt100sos.dll", "tools/Runtime/x64/msdia120.dll", "tools/Runtime/x86/CommandProvider.dll", - "tools/Runtime/x86/Microsoft.NET.Native.Runtime.1.7.appx", + "tools/Runtime/x86/Microsoft.NET.Native.Runtime.2.0.appx", "tools/Runtime/x86/SymbolProvider.dll", "tools/Runtime/x86/mrt100_app.pdb", "tools/Runtime/x86/mrt100dac_winx86.dll", @@ -17871,90 +3206,80 @@ "tools/Runtime/x86/mrt100etw.dll", "tools/Runtime/x86/mrt100sos.dll", "tools/Runtime/x86/msdia120.dll", - "tools/SharedLibraryXML/Callisto.rd.xml", - "tools/SharedLibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", - "tools/SharedLibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", - "tools/SharedLibraryXML/HugeFlow.Common.rd.xml", - "tools/SharedLibraryXML/JulMar.Windows.Interactivity.rd.xml", - "tools/SharedLibraryXML/MarkedUp.rd.xml", - "tools/SharedLibraryXML/Microsoft.ApplicationInsights.rd.xml", - "tools/SharedLibraryXML/Microsoft.PlayerFramework.rd.xml", - "tools/SharedLibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", - "tools/SharedLibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", - "tools/SharedLibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", - "tools/SharedLibraryXML/MonoGame.Framework.rd.xml", - "tools/SharedLibraryXML/MyToolkit.rd.xml", - "tools/SharedLibraryXML/Newtonsoft.Json.rd.xml", - "tools/SharedLibraryXML/SharpDX.DXGI.rd.xml", - "tools/SharedLibraryXML/SharpDX.Direct2D1.rd.xml", - "tools/SharedLibraryXML/SharpDX.rd.xml", - "tools/SharedLibraryXML/System.Reactive.Core.rd.xml", - "tools/SharedLibraryXML/System.Reactive.Linq.rd.xml", - "tools/SharedLibraryXML/System.Reactive.PlatformServices.rd.xml", - "tools/SharedLibraryXML/Telerik.Core.rd.xml", - "tools/SharedLibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", - "tools/SharedLibraryXML/UnityEngine.rd.xml", - "tools/SharedLibraryXML/WinRT.Triggers.rd.xml", - "tools/SharedLibraryXML/WinRTXamlToolkit.rd.xml", - "tools/SharedLibraryXML/protobuf-net.rd.xml", + "tools/SharedLibraryXML/BiggerSharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/BiggerSharedLibrary.rd.xml", + "tools/SharedLibraryXML/BiggerSharedLibrary.template.rd.xml", + "tools/SharedLibraryXML/GenerateRdXml.cmd", + "tools/SharedLibraryXML/SharedLibrary.AssemblyList.txt", + "tools/SharedLibraryXML/SharedLibrary.rd.xml", + "tools/SharedLibraryXML/SharedLibrary.template.rd.xml", "tools/arm/etwevents.man", - "tools/arm/ilc/IlcInternals.settings.targets", - "tools/arm/ilc/IlcInternals.targets", - "tools/arm/ilc/Microsoft.Cci.dll", + "tools/arm/ilc/clrcompression.dll", + "tools/arm/ilc/cs/CciExtensions.resources.dll", + "tools/arm/ilc/cs/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/cs/Ilc.resources.dll", - "tools/arm/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/arm/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/arm/ilc/csc/System.AppContext.dll", - "tools/arm/ilc/csc/System.Collections.Immutable.dll", - "tools/arm/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/arm/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/arm/ilc/csc/System.IO.FileSystem.dll", - "tools/arm/ilc/csc/System.Reflection.Metadata.dll", - "tools/arm/ilc/csc/csc.exe", - "tools/arm/ilc/csc/csc.exe.config", + "tools/arm/ilc/cs/McgEngine.resources.dll", + "tools/arm/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/cs/ReducerEngine.resources.dll", + "tools/arm/ilc/cs/TypeNameUtilities.resources.dll", + "tools/arm/ilc/de/CciExtensions.resources.dll", + "tools/arm/ilc/de/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/de/Ilc.resources.dll", + "tools/arm/ilc/de/McgEngine.resources.dll", + "tools/arm/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/de/ReducerEngine.resources.dll", + "tools/arm/ilc/de/TypeNameUtilities.resources.dll", + "tools/arm/ilc/es/CciExtensions.resources.dll", + "tools/arm/ilc/es/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/es/Ilc.resources.dll", + "tools/arm/ilc/es/McgEngine.resources.dll", + "tools/arm/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/es/ReducerEngine.resources.dll", + "tools/arm/ilc/es/TypeNameUtilities.resources.dll", + "tools/arm/ilc/fr/CciExtensions.resources.dll", + "tools/arm/ilc/fr/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/fr/Ilc.resources.dll", + "tools/arm/ilc/fr/McgEngine.resources.dll", + "tools/arm/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/fr/ReducerEngine.resources.dll", + "tools/arm/ilc/fr/TypeNameUtilities.resources.dll", "tools/arm/ilc/ilc.exe", - "tools/arm/ilc/ilc.exe.config", + "tools/arm/ilc/it/CciExtensions.resources.dll", + "tools/arm/ilc/it/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/it/Ilc.resources.dll", + "tools/arm/ilc/it/McgEngine.resources.dll", + "tools/arm/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/it/ReducerEngine.resources.dll", + "tools/arm/ilc/it/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ja/CciExtensions.resources.dll", + "tools/arm/ilc/ja/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/ja/Ilc.resources.dll", + "tools/arm/ilc/ja/McgEngine.resources.dll", + "tools/arm/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ja/ReducerEngine.resources.dll", + "tools/arm/ilc/ja/TypeNameUtilities.resources.dll", + "tools/arm/ilc/ko/CciExtensions.resources.dll", + "tools/arm/ilc/ko/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/ko/Ilc.resources.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/ucrtbase.dll", - "tools/arm/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/arm/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/arm/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/arm/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/arm/ilc/ko/McgEngine.resources.dll", + "tools/arm/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ko/ReducerEngine.resources.dll", + "tools/arm/ilc/ko/TypeNameUtilities.resources.dll", "tools/arm/ilc/lib/Native/Interop.Native.lib", "tools/arm/ilc/lib/Native/TypeLoader.Native.lib", - "tools/arm/ilc/lib/Native/corelib.native.lib", "tools/arm/ilc/lib/Native/pgort.lib", "tools/arm/ilc/lib/Native/vmath.lib", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.pdb", "tools/arm/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.Threading.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.dll", "tools/arm/ilc/lib/Private/System.Private.CoreLib.pdb", + "tools/arm/ilc/lib/Private/System.Private.Debug.dll", + "tools/arm/ilc/lib/Private/System.Private.Debug.pdb", "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", @@ -17965,35 +3290,59 @@ "tools/arm/ilc/lib/Private/System.Private.Interop.dll", "tools/arm/ilc/lib/Private/System.Private.Interop.pdb", "tools/arm/ilc/lib/Private/System.Private.MCG.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/arm/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Augments.dll", "tools/arm/ilc/lib/Private/System.Private.Reflection.Core.dll", "tools/arm/ilc/lib/Private/System.Private.Reflection.Core.pdb", "tools/arm/ilc/lib/Private/System.Private.Reflection.Execution.dll", "tools/arm/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", "tools/arm/ilc/lib/Private/System.Private.Reflection.Metadata.dll", "tools/arm/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.pdb", "tools/arm/ilc/lib/Private/System.Private.StackTraceGenerator.dll", "tools/arm/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/arm/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", + "tools/arm/ilc/lib/Private/System.Private.StackTraceMetadata.dll", + "tools/arm/ilc/lib/Private/System.Private.StackTraceMetadata.pdb", "tools/arm/ilc/lib/Private/System.Private.Threading.dll", "tools/arm/ilc/lib/Private/System.Private.Threading.pdb", "tools/arm/ilc/lib/Private/System.Private.TypeLoader.dll", "tools/arm/ilc/lib/Private/System.Private.TypeLoader.pdb", "tools/arm/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", "tools/arm/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/arm/ilc/lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/arm/ilc/lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Interop.dll", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Interop.pdb", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/arm/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/arm/ilc/lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/arm/ilc/lib/PrivateWin32/System.Private.TypeLoader.pdb", "tools/arm/ilc/lib/Runtime/mrt100_app.dll", "tools/arm/ilc/lib/Runtime/mrt100_app.pdb", + "tools/arm/ilc/lib/Runtime/mrt150.dll", + "tools/arm/ilc/lib/Runtime/mrt150.pdb", + "tools/arm/ilc/mrt150.dll", + "tools/arm/ilc/pl/CciExtensions.resources.dll", + "tools/arm/ilc/pl/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/pl/Ilc.resources.dll", + "tools/arm/ilc/pl/McgEngine.resources.dll", + "tools/arm/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pl/ReducerEngine.resources.dll", + "tools/arm/ilc/pl/TypeNameUtilities.resources.dll", + "tools/arm/ilc/pt-BR/CciExtensions.resources.dll", + "tools/arm/ilc/pt-BR/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/pt-BR/Ilc.resources.dll", + "tools/arm/ilc/pt-BR/McgEngine.resources.dll", + "tools/arm/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/arm/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/arm/ilc/rhconfig.ini", + "tools/arm/ilc/ru/CciExtensions.resources.dll", + "tools/arm/ilc/ru/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/ru/Ilc.resources.dll", + "tools/arm/ilc/ru/McgEngine.resources.dll", + "tools/arm/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/ru/ReducerEngine.resources.dll", + "tools/arm/ilc/ru/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/1028/nutcui.dll", "tools/arm/ilc/tools/1028/rhbindui.dll", "tools/arm/ilc/tools/1029/nutcui.dll", @@ -18022,82 +3371,38 @@ "tools/arm/ilc/tools/2052/rhbindui.dll", "tools/arm/ilc/tools/3082/nutcui.dll", "tools/arm/ilc/tools/3082/rhbindui.dll", - "tools/arm/ilc/tools/CciExtensions.dll", - "tools/arm/ilc/tools/Gatekeeper.Engine.dll", - "tools/arm/ilc/tools/Gatekeeper.exe", - "tools/arm/ilc/tools/Gatekeeper.exe.config", "tools/arm/ilc/tools/GatekeeperConfig.xml", + "tools/arm/ilc/tools/ILCTelemetry.exe", + "tools/arm/ilc/tools/ILCompiler.MetadataWriter.dll", "tools/arm/ilc/tools/McgCodeDom.dll", - "tools/arm/ilc/tools/McgEngine.dll", - "tools/arm/ilc/tools/MdTransform.dll", - "tools/arm/ilc/tools/MethodBodyEditor.dll", "tools/arm/ilc/tools/Microsoft.Build.ILTasks.dll", "tools/arm/ilc/tools/Microsoft.Cci.dll", "tools/arm/ilc/tools/Microsoft.DiaSymReader.Converter.dll", "tools/arm/ilc/tools/Microsoft.DiaSymReader.dll", "tools/arm/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/arm/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/arm/ilc/tools/Microsoft.NetNative.Instrumentation.dll", "tools/arm/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", "tools/arm/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", "tools/arm/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/arm/ilc/tools/NativeFormatWriter.dll", "tools/arm/ilc/tools/Newtonsoft.Json.dll", - "tools/arm/ilc/tools/ReducerEngine.dll", + "tools/arm/ilc/tools/StackTraceExceptions.txt", + "tools/arm/ilc/tools/StackTraceMetadataProvider.dll", "tools/arm/ilc/tools/System.Collections.Immutable.dll", "tools/arm/ilc/tools/System.Reflection.Metadata.dll", "tools/arm/ilc/tools/System.ValueTuple.dll", - "tools/arm/ilc/tools/TypeNameUtilities.dll", - "tools/arm/ilc/tools/WCFDispatchProxy.dll", "tools/arm/ilc/tools/c2n.dll", - "tools/arm/ilc/tools/cs/CciExtensions.resources.dll", - "tools/arm/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/cs/McgEngine.resources.dll", "tools/arm/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/cs/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/cs/sg.resources.dll", - "tools/arm/ilc/tools/de/CciExtensions.resources.dll", - "tools/arm/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/de/McgEngine.resources.dll", "tools/arm/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/de/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/de/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/de/sg.resources.dll", - "tools/arm/ilc/tools/es/CciExtensions.resources.dll", - "tools/arm/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/es/McgEngine.resources.dll", "tools/arm/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/es/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/es/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/es/sg.resources.dll", - "tools/arm/ilc/tools/fr/CciExtensions.resources.dll", - "tools/arm/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/fr/McgEngine.resources.dll", "tools/arm/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/fr/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/fr/sg.resources.dll", - "tools/arm/ilc/tools/it/CciExtensions.resources.dll", - "tools/arm/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/it/McgEngine.resources.dll", "tools/arm/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/it/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/it/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/it/sg.resources.dll", - "tools/arm/ilc/tools/ja/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ja/McgEngine.resources.dll", "tools/arm/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ja/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/ja/sg.resources.dll", - "tools/arm/ilc/tools/ko/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ko/McgEngine.resources.dll", "tools/arm/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ko/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/ko/sg.resources.dll", "tools/arm/ilc/tools/msdia.sxs.manifest", "tools/arm/ilc/tools/msdia120.dll", @@ -18110,115 +3415,148 @@ "tools/arm/ilc/tools/pgocvt.exe", "tools/arm/ilc/tools/pgodb140.dll", "tools/arm/ilc/tools/pgomgr.exe", - "tools/arm/ilc/tools/pl/CciExtensions.resources.dll", - "tools/arm/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/pl/McgEngine.resources.dll", + "tools/arm/ilc/tools/pgort140.dll", + "tools/arm/ilc/tools/pgosweep.exe", "tools/arm/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/pl/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/pl/sg.resources.dll", - "tools/arm/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/arm/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/pt-BR/McgEngine.resources.dll", "tools/arm/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/pt-BR/sg.resources.dll", "tools/arm/ilc/tools/rhbind.exe", - "tools/arm/ilc/tools/ru/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ru/McgEngine.resources.dll", "tools/arm/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ru/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/ru/sg.resources.dll", "tools/arm/ilc/tools/sg.exe", "tools/arm/ilc/tools/sg.exe.config", - "tools/arm/ilc/tools/tr/CciExtensions.resources.dll", - "tools/arm/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/tr/McgEngine.resources.dll", "tools/arm/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/tr/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/tr/sg.resources.dll", "tools/arm/ilc/tools/ucrtbase.dll", "tools/arm/ilc/tools/vcruntime140.dll", - "tools/arm/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/arm/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/zh-Hans/McgEngine.resources.dll", "tools/arm/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/zh-Hans/sg.resources.dll", - "tools/arm/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/arm/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/zh-Hant/McgEngine.resources.dll", "tools/arm/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", "tools/arm/ilc/tools/zh-Hant/sg.resources.dll", + "tools/arm/ilc/tools64/1033/nutcui.dll", + "tools/arm/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/arm/ilc/tools64/StackTraceExceptions.txt", + "tools/arm/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/arm/ilc/tools64/c2n.dll", + "tools/arm/ilc/tools64/msdia.sxs.manifest", + "tools/arm/ilc/tools64/msdia120.dll", + "tools/arm/ilc/tools64/msobj140.dll", + "tools/arm/ilc/tools64/mspdbcore.dll", + "tools/arm/ilc/tools64/msvcdis140.dll", + "tools/arm/ilc/tools64/msvcp140.dll", + "tools/arm/ilc/tools64/nutc_driver.exe", + "tools/arm/ilc/tools64/nutc_driver.exe.config", + "tools/arm/ilc/tools64/pgocvt.exe", + "tools/arm/ilc/tools64/pgodb140.dll", + "tools/arm/ilc/tools64/pgomgr.exe", + "tools/arm/ilc/tools64/pgort140.dll", + "tools/arm/ilc/tools64/pgosweep.exe", + "tools/arm/ilc/tools64/ucrtbase.dll", + "tools/arm/ilc/tools64/vcruntime140.dll", + "tools/arm/ilc/tr/CciExtensions.resources.dll", + "tools/arm/ilc/tr/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/tr/Ilc.resources.dll", + "tools/arm/ilc/tr/McgEngine.resources.dll", + "tools/arm/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/tr/ReducerEngine.resources.dll", + "tools/arm/ilc/tr/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/zh-Hans/Ilc.resources.dll", + "tools/arm/ilc/zh-Hans/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/arm/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/arm/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", "tools/arm/ilc/zh-Hant/Ilc.resources.dll", + "tools/arm/ilc/zh-Hant/McgEngine.resources.dll", + "tools/arm/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/arm/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/arm/ilc/zh-Hant/TypeNameUtilities.resources.dll", "tools/arm/mrt100etw.dll", + "tools/csc/Microsoft.CodeAnalysis.CSharp.dll", + "tools/csc/Microsoft.CodeAnalysis.dll", + "tools/csc/Microsoft.DiaSymReader.Native.amd64.dll", + "tools/csc/Microsoft.DiaSymReader.Native.x86.dll", + "tools/csc/System.AppContext.dll", + "tools/csc/System.Collections.Immutable.dll", + "tools/csc/System.Diagnostics.StackTrace.dll", + "tools/csc/System.IO.FileSystem.Primitives.dll", + "tools/csc/System.IO.FileSystem.dll", + "tools/csc/System.Reflection.Metadata.dll", + "tools/csc/clrcompression.dll", + "tools/csc/csc.exe", + "tools/csc/csc.exe.config", + "tools/csc/mrt150.dll", "tools/x64/etwevents.man", - "tools/x64/ilc/IlcInternals.settings.targets", - "tools/x64/ilc/IlcInternals.targets", - "tools/x64/ilc/Microsoft.Cci.dll", + "tools/x64/ilc/clrcompression.dll", + "tools/x64/ilc/cs/CciExtensions.resources.dll", + "tools/x64/ilc/cs/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/cs/Ilc.resources.dll", - "tools/x64/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/x64/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/x64/ilc/csc/System.AppContext.dll", - "tools/x64/ilc/csc/System.Collections.Immutable.dll", - "tools/x64/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/x64/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/x64/ilc/csc/System.IO.FileSystem.dll", - "tools/x64/ilc/csc/System.Reflection.Metadata.dll", - "tools/x64/ilc/csc/csc.exe", - "tools/x64/ilc/csc/csc.exe.config", + "tools/x64/ilc/cs/McgEngine.resources.dll", + "tools/x64/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/cs/ReducerEngine.resources.dll", + "tools/x64/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x64/ilc/de/CciExtensions.resources.dll", + "tools/x64/ilc/de/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/de/Ilc.resources.dll", + "tools/x64/ilc/de/McgEngine.resources.dll", + "tools/x64/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/de/ReducerEngine.resources.dll", + "tools/x64/ilc/de/TypeNameUtilities.resources.dll", + "tools/x64/ilc/es/CciExtensions.resources.dll", + "tools/x64/ilc/es/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/es/Ilc.resources.dll", + "tools/x64/ilc/es/McgEngine.resources.dll", + "tools/x64/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/es/ReducerEngine.resources.dll", + "tools/x64/ilc/es/TypeNameUtilities.resources.dll", + "tools/x64/ilc/fr/CciExtensions.resources.dll", + "tools/x64/ilc/fr/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/fr/Ilc.resources.dll", + "tools/x64/ilc/fr/McgEngine.resources.dll", + "tools/x64/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/fr/ReducerEngine.resources.dll", + "tools/x64/ilc/fr/TypeNameUtilities.resources.dll", "tools/x64/ilc/ilc.exe", - "tools/x64/ilc/ilc.exe.config", + "tools/x64/ilc/it/CciExtensions.resources.dll", + "tools/x64/ilc/it/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/it/Ilc.resources.dll", + "tools/x64/ilc/it/McgEngine.resources.dll", + "tools/x64/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/it/ReducerEngine.resources.dll", + "tools/x64/ilc/it/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ja/CciExtensions.resources.dll", + "tools/x64/ilc/ja/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/ja/Ilc.resources.dll", + "tools/x64/ilc/ja/McgEngine.resources.dll", + "tools/x64/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ja/ReducerEngine.resources.dll", + "tools/x64/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x64/ilc/ko/CciExtensions.resources.dll", + "tools/x64/ilc/ko/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/ko/Ilc.resources.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/ucrtbase.dll", - "tools/x64/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/x64/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/x64/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/x64/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/x64/ilc/ko/McgEngine.resources.dll", + "tools/x64/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ko/ReducerEngine.resources.dll", + "tools/x64/ilc/ko/TypeNameUtilities.resources.dll", "tools/x64/ilc/lib/Native/Interop.Native.lib", "tools/x64/ilc/lib/Native/TypeLoader.Native.lib", - "tools/x64/ilc/lib/Native/corelib.native.lib", "tools/x64/ilc/lib/Native/pgort.lib", "tools/x64/ilc/lib/Native/vmath.lib", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.pdb", "tools/x64/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.Threading.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.dll", "tools/x64/ilc/lib/Private/System.Private.CoreLib.pdb", + "tools/x64/ilc/lib/Private/System.Private.Debug.dll", + "tools/x64/ilc/lib/Private/System.Private.Debug.pdb", "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", @@ -18229,35 +3567,59 @@ "tools/x64/ilc/lib/Private/System.Private.Interop.dll", "tools/x64/ilc/lib/Private/System.Private.Interop.pdb", "tools/x64/ilc/lib/Private/System.Private.MCG.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/x64/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Augments.dll", "tools/x64/ilc/lib/Private/System.Private.Reflection.Core.dll", "tools/x64/ilc/lib/Private/System.Private.Reflection.Core.pdb", "tools/x64/ilc/lib/Private/System.Private.Reflection.Execution.dll", "tools/x64/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", "tools/x64/ilc/lib/Private/System.Private.Reflection.Metadata.dll", "tools/x64/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.pdb", "tools/x64/ilc/lib/Private/System.Private.StackTraceGenerator.dll", "tools/x64/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/x64/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", + "tools/x64/ilc/lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x64/ilc/lib/Private/System.Private.StackTraceMetadata.pdb", "tools/x64/ilc/lib/Private/System.Private.Threading.dll", "tools/x64/ilc/lib/Private/System.Private.Threading.pdb", "tools/x64/ilc/lib/Private/System.Private.TypeLoader.dll", "tools/x64/ilc/lib/Private/System.Private.TypeLoader.pdb", "tools/x64/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", "tools/x64/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x64/ilc/lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x64/ilc/lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Interop.dll", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x64/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x64/ilc/lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x64/ilc/lib/PrivateWin32/System.Private.TypeLoader.pdb", "tools/x64/ilc/lib/Runtime/mrt100_app.dll", "tools/x64/ilc/lib/Runtime/mrt100_app.pdb", + "tools/x64/ilc/lib/Runtime/mrt150.dll", + "tools/x64/ilc/lib/Runtime/mrt150.pdb", + "tools/x64/ilc/mrt150.dll", + "tools/x64/ilc/pl/CciExtensions.resources.dll", + "tools/x64/ilc/pl/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/pl/Ilc.resources.dll", + "tools/x64/ilc/pl/McgEngine.resources.dll", + "tools/x64/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pl/ReducerEngine.resources.dll", + "tools/x64/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x64/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x64/ilc/pt-BR/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/pt-BR/Ilc.resources.dll", + "tools/x64/ilc/pt-BR/McgEngine.resources.dll", + "tools/x64/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x64/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x64/ilc/rhconfig.ini", + "tools/x64/ilc/ru/CciExtensions.resources.dll", + "tools/x64/ilc/ru/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/ru/Ilc.resources.dll", + "tools/x64/ilc/ru/McgEngine.resources.dll", + "tools/x64/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/ru/ReducerEngine.resources.dll", + "tools/x64/ilc/ru/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/1028/nutcui.dll", "tools/x64/ilc/tools/1028/rhbindui.dll", "tools/x64/ilc/tools/1029/nutcui.dll", @@ -18286,82 +3648,38 @@ "tools/x64/ilc/tools/2052/rhbindui.dll", "tools/x64/ilc/tools/3082/nutcui.dll", "tools/x64/ilc/tools/3082/rhbindui.dll", - "tools/x64/ilc/tools/CciExtensions.dll", - "tools/x64/ilc/tools/Gatekeeper.Engine.dll", - "tools/x64/ilc/tools/Gatekeeper.exe", - "tools/x64/ilc/tools/Gatekeeper.exe.config", "tools/x64/ilc/tools/GatekeeperConfig.xml", + "tools/x64/ilc/tools/ILCTelemetry.exe", + "tools/x64/ilc/tools/ILCompiler.MetadataWriter.dll", "tools/x64/ilc/tools/McgCodeDom.dll", - "tools/x64/ilc/tools/McgEngine.dll", - "tools/x64/ilc/tools/MdTransform.dll", - "tools/x64/ilc/tools/MethodBodyEditor.dll", "tools/x64/ilc/tools/Microsoft.Build.ILTasks.dll", "tools/x64/ilc/tools/Microsoft.Cci.dll", "tools/x64/ilc/tools/Microsoft.DiaSymReader.Converter.dll", "tools/x64/ilc/tools/Microsoft.DiaSymReader.dll", "tools/x64/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/x64/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/x64/ilc/tools/Microsoft.NetNative.Instrumentation.dll", "tools/x64/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", "tools/x64/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", "tools/x64/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/x64/ilc/tools/NativeFormatWriter.dll", "tools/x64/ilc/tools/Newtonsoft.Json.dll", - "tools/x64/ilc/tools/ReducerEngine.dll", + "tools/x64/ilc/tools/StackTraceExceptions.txt", + "tools/x64/ilc/tools/StackTraceMetadataProvider.dll", "tools/x64/ilc/tools/System.Collections.Immutable.dll", "tools/x64/ilc/tools/System.Reflection.Metadata.dll", "tools/x64/ilc/tools/System.ValueTuple.dll", - "tools/x64/ilc/tools/TypeNameUtilities.dll", - "tools/x64/ilc/tools/WCFDispatchProxy.dll", "tools/x64/ilc/tools/c2n.dll", - "tools/x64/ilc/tools/cs/CciExtensions.resources.dll", - "tools/x64/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/cs/McgEngine.resources.dll", "tools/x64/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/cs/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/cs/sg.resources.dll", - "tools/x64/ilc/tools/de/CciExtensions.resources.dll", - "tools/x64/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/de/McgEngine.resources.dll", "tools/x64/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/de/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/de/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/de/sg.resources.dll", - "tools/x64/ilc/tools/es/CciExtensions.resources.dll", - "tools/x64/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/es/McgEngine.resources.dll", "tools/x64/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/es/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/es/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/es/sg.resources.dll", - "tools/x64/ilc/tools/fr/CciExtensions.resources.dll", - "tools/x64/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/fr/McgEngine.resources.dll", "tools/x64/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/fr/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/fr/sg.resources.dll", - "tools/x64/ilc/tools/it/CciExtensions.resources.dll", - "tools/x64/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/it/McgEngine.resources.dll", "tools/x64/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/it/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/it/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/it/sg.resources.dll", - "tools/x64/ilc/tools/ja/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ja/McgEngine.resources.dll", "tools/x64/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ja/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/ja/sg.resources.dll", - "tools/x64/ilc/tools/ko/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ko/McgEngine.resources.dll", "tools/x64/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ko/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/ko/sg.resources.dll", "tools/x64/ilc/tools/msdia.sxs.manifest", "tools/x64/ilc/tools/msdia120.dll", @@ -18374,115 +3692,134 @@ "tools/x64/ilc/tools/pgocvt.exe", "tools/x64/ilc/tools/pgodb140.dll", "tools/x64/ilc/tools/pgomgr.exe", - "tools/x64/ilc/tools/pl/CciExtensions.resources.dll", - "tools/x64/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/pl/McgEngine.resources.dll", + "tools/x64/ilc/tools/pgort140.dll", + "tools/x64/ilc/tools/pgosweep.exe", "tools/x64/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/pl/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/pl/sg.resources.dll", - "tools/x64/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/x64/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/pt-BR/McgEngine.resources.dll", "tools/x64/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/pt-BR/sg.resources.dll", "tools/x64/ilc/tools/rhbind.exe", - "tools/x64/ilc/tools/ru/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ru/McgEngine.resources.dll", "tools/x64/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ru/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/ru/sg.resources.dll", "tools/x64/ilc/tools/sg.exe", "tools/x64/ilc/tools/sg.exe.config", - "tools/x64/ilc/tools/tr/CciExtensions.resources.dll", - "tools/x64/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/tr/McgEngine.resources.dll", "tools/x64/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/tr/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/tr/sg.resources.dll", "tools/x64/ilc/tools/ucrtbase.dll", "tools/x64/ilc/tools/vcruntime140.dll", - "tools/x64/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/x64/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/zh-Hans/McgEngine.resources.dll", "tools/x64/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/zh-Hans/sg.resources.dll", - "tools/x64/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/x64/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/zh-Hant/McgEngine.resources.dll", "tools/x64/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", "tools/x64/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x64/ilc/tools64/1033/nutcui.dll", + "tools/x64/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x64/ilc/tools64/StackTraceExceptions.txt", + "tools/x64/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x64/ilc/tools64/c2n.dll", + "tools/x64/ilc/tools64/msdia.sxs.manifest", + "tools/x64/ilc/tools64/msdia120.dll", + "tools/x64/ilc/tools64/msobj140.dll", + "tools/x64/ilc/tools64/mspdbcore.dll", + "tools/x64/ilc/tools64/msvcdis140.dll", + "tools/x64/ilc/tools64/msvcp140.dll", + "tools/x64/ilc/tools64/nutc_driver.exe", + "tools/x64/ilc/tools64/nutc_driver.exe.config", + "tools/x64/ilc/tools64/pgocvt.exe", + "tools/x64/ilc/tools64/pgodb140.dll", + "tools/x64/ilc/tools64/pgomgr.exe", + "tools/x64/ilc/tools64/pgort140.dll", + "tools/x64/ilc/tools64/pgosweep.exe", + "tools/x64/ilc/tools64/ucrtbase.dll", + "tools/x64/ilc/tools64/vcruntime140.dll", + "tools/x64/ilc/tr/CciExtensions.resources.dll", + "tools/x64/ilc/tr/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/tr/Ilc.resources.dll", + "tools/x64/ilc/tr/McgEngine.resources.dll", + "tools/x64/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/tr/ReducerEngine.resources.dll", + "tools/x64/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/zh-Hans/Ilc.resources.dll", + "tools/x64/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x64/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x64/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", "tools/x64/ilc/zh-Hant/Ilc.resources.dll", + "tools/x64/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x64/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x64/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x64/ilc/zh-Hant/TypeNameUtilities.resources.dll", "tools/x64/mrt100etw.dll", "tools/x86/etwevents.man", - "tools/x86/ilc/IlcInternals.settings.targets", - "tools/x86/ilc/IlcInternals.targets", - "tools/x86/ilc/Microsoft.Cci.dll", + "tools/x86/ilc/clrcompression.dll", + "tools/x86/ilc/cs/CciExtensions.resources.dll", + "tools/x86/ilc/cs/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/cs/Ilc.resources.dll", - "tools/x86/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/x86/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/x86/ilc/csc/System.AppContext.dll", - "tools/x86/ilc/csc/System.Collections.Immutable.dll", - "tools/x86/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/x86/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/x86/ilc/csc/System.IO.FileSystem.dll", - "tools/x86/ilc/csc/System.Reflection.Metadata.dll", - "tools/x86/ilc/csc/csc.exe", - "tools/x86/ilc/csc/csc.exe.config", + "tools/x86/ilc/cs/McgEngine.resources.dll", + "tools/x86/ilc/cs/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/cs/ReducerEngine.resources.dll", + "tools/x86/ilc/cs/TypeNameUtilities.resources.dll", + "tools/x86/ilc/de/CciExtensions.resources.dll", + "tools/x86/ilc/de/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/de/Ilc.resources.dll", + "tools/x86/ilc/de/McgEngine.resources.dll", + "tools/x86/ilc/de/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/de/ReducerEngine.resources.dll", + "tools/x86/ilc/de/TypeNameUtilities.resources.dll", + "tools/x86/ilc/es/CciExtensions.resources.dll", + "tools/x86/ilc/es/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/es/Ilc.resources.dll", + "tools/x86/ilc/es/McgEngine.resources.dll", + "tools/x86/ilc/es/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/es/ReducerEngine.resources.dll", + "tools/x86/ilc/es/TypeNameUtilities.resources.dll", + "tools/x86/ilc/fr/CciExtensions.resources.dll", + "tools/x86/ilc/fr/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/fr/Ilc.resources.dll", + "tools/x86/ilc/fr/McgEngine.resources.dll", + "tools/x86/ilc/fr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/fr/ReducerEngine.resources.dll", + "tools/x86/ilc/fr/TypeNameUtilities.resources.dll", "tools/x86/ilc/ilc.exe", - "tools/x86/ilc/ilc.exe.config", + "tools/x86/ilc/it/CciExtensions.resources.dll", + "tools/x86/ilc/it/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/it/Ilc.resources.dll", + "tools/x86/ilc/it/McgEngine.resources.dll", + "tools/x86/ilc/it/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/it/ReducerEngine.resources.dll", + "tools/x86/ilc/it/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ja/CciExtensions.resources.dll", + "tools/x86/ilc/ja/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/ja/Ilc.resources.dll", + "tools/x86/ilc/ja/McgEngine.resources.dll", + "tools/x86/ilc/ja/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ja/ReducerEngine.resources.dll", + "tools/x86/ilc/ja/TypeNameUtilities.resources.dll", + "tools/x86/ilc/ko/CciExtensions.resources.dll", + "tools/x86/ilc/ko/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/ko/Ilc.resources.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/ucrtbase.dll", - "tools/x86/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/x86/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/x86/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/x86/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", + "tools/x86/ilc/ko/McgEngine.resources.dll", + "tools/x86/ilc/ko/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ko/ReducerEngine.resources.dll", + "tools/x86/ilc/ko/TypeNameUtilities.resources.dll", "tools/x86/ilc/lib/Native/Interop.Native.lib", "tools/x86/ilc/lib/Native/TypeLoader.Native.lib", - "tools/x86/ilc/lib/Native/corelib.native.lib", "tools/x86/ilc/lib/Native/pgort.lib", "tools/x86/ilc/lib/Native/vmath.lib", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.pdb", "tools/x86/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.Threading.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.dll", "tools/x86/ilc/lib/Private/System.Private.CoreLib.pdb", + "tools/x86/ilc/lib/Private/System.Private.Debug.dll", + "tools/x86/ilc/lib/Private/System.Private.Debug.pdb", "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", @@ -18493,35 +3830,59 @@ "tools/x86/ilc/lib/Private/System.Private.Interop.dll", "tools/x86/ilc/lib/Private/System.Private.Interop.pdb", "tools/x86/ilc/lib/Private/System.Private.MCG.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/x86/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Augments.dll", "tools/x86/ilc/lib/Private/System.Private.Reflection.Core.dll", "tools/x86/ilc/lib/Private/System.Private.Reflection.Core.pdb", "tools/x86/ilc/lib/Private/System.Private.Reflection.Execution.dll", "tools/x86/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", "tools/x86/ilc/lib/Private/System.Private.Reflection.Metadata.dll", "tools/x86/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.pdb", "tools/x86/ilc/lib/Private/System.Private.StackTraceGenerator.dll", "tools/x86/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/x86/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", + "tools/x86/ilc/lib/Private/System.Private.StackTraceMetadata.dll", + "tools/x86/ilc/lib/Private/System.Private.StackTraceMetadata.pdb", "tools/x86/ilc/lib/Private/System.Private.Threading.dll", "tools/x86/ilc/lib/Private/System.Private.Threading.pdb", "tools/x86/ilc/lib/Private/System.Private.TypeLoader.dll", "tools/x86/ilc/lib/Private/System.Private.TypeLoader.pdb", "tools/x86/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", "tools/x86/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", + "tools/x86/ilc/lib/PrivateWin32/System.Private.CoreLib.dll", + "tools/x86/ilc/lib/PrivateWin32/System.Private.CoreLib.pdb", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Interop.dll", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Interop.pdb", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Reflection.Core.dll", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Reflection.Core.pdb", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.dll", + "tools/x86/ilc/lib/PrivateWin32/System.Private.Reflection.Execution.pdb", + "tools/x86/ilc/lib/PrivateWin32/System.Private.TypeLoader.dll", + "tools/x86/ilc/lib/PrivateWin32/System.Private.TypeLoader.pdb", "tools/x86/ilc/lib/Runtime/mrt100_app.dll", "tools/x86/ilc/lib/Runtime/mrt100_app.pdb", + "tools/x86/ilc/lib/Runtime/mrt150.dll", + "tools/x86/ilc/lib/Runtime/mrt150.pdb", + "tools/x86/ilc/mrt150.dll", + "tools/x86/ilc/pl/CciExtensions.resources.dll", + "tools/x86/ilc/pl/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/pl/Ilc.resources.dll", + "tools/x86/ilc/pl/McgEngine.resources.dll", + "tools/x86/ilc/pl/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pl/ReducerEngine.resources.dll", + "tools/x86/ilc/pl/TypeNameUtilities.resources.dll", + "tools/x86/ilc/pt-BR/CciExtensions.resources.dll", + "tools/x86/ilc/pt-BR/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/pt-BR/Ilc.resources.dll", + "tools/x86/ilc/pt-BR/McgEngine.resources.dll", + "tools/x86/ilc/pt-BR/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/pt-BR/ReducerEngine.resources.dll", + "tools/x86/ilc/pt-BR/TypeNameUtilities.resources.dll", + "tools/x86/ilc/rhconfig.ini", + "tools/x86/ilc/ru/CciExtensions.resources.dll", + "tools/x86/ilc/ru/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/ru/Ilc.resources.dll", + "tools/x86/ilc/ru/McgEngine.resources.dll", + "tools/x86/ilc/ru/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/ru/ReducerEngine.resources.dll", + "tools/x86/ilc/ru/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/1028/nutcui.dll", "tools/x86/ilc/tools/1028/rhbindui.dll", "tools/x86/ilc/tools/1029/nutcui.dll", @@ -18550,82 +3911,38 @@ "tools/x86/ilc/tools/2052/rhbindui.dll", "tools/x86/ilc/tools/3082/nutcui.dll", "tools/x86/ilc/tools/3082/rhbindui.dll", - "tools/x86/ilc/tools/CciExtensions.dll", - "tools/x86/ilc/tools/Gatekeeper.Engine.dll", - "tools/x86/ilc/tools/Gatekeeper.exe", - "tools/x86/ilc/tools/Gatekeeper.exe.config", "tools/x86/ilc/tools/GatekeeperConfig.xml", + "tools/x86/ilc/tools/ILCTelemetry.exe", + "tools/x86/ilc/tools/ILCompiler.MetadataWriter.dll", "tools/x86/ilc/tools/McgCodeDom.dll", - "tools/x86/ilc/tools/McgEngine.dll", - "tools/x86/ilc/tools/MdTransform.dll", - "tools/x86/ilc/tools/MethodBodyEditor.dll", "tools/x86/ilc/tools/Microsoft.Build.ILTasks.dll", "tools/x86/ilc/tools/Microsoft.Cci.dll", "tools/x86/ilc/tools/Microsoft.DiaSymReader.Converter.dll", "tools/x86/ilc/tools/Microsoft.DiaSymReader.dll", "tools/x86/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/x86/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/x86/ilc/tools/Microsoft.NetNative.Instrumentation.dll", "tools/x86/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", "tools/x86/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", "tools/x86/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/x86/ilc/tools/NativeFormatWriter.dll", "tools/x86/ilc/tools/Newtonsoft.Json.dll", - "tools/x86/ilc/tools/ReducerEngine.dll", + "tools/x86/ilc/tools/StackTraceExceptions.txt", + "tools/x86/ilc/tools/StackTraceMetadataProvider.dll", "tools/x86/ilc/tools/System.Collections.Immutable.dll", "tools/x86/ilc/tools/System.Reflection.Metadata.dll", "tools/x86/ilc/tools/System.ValueTuple.dll", - "tools/x86/ilc/tools/TypeNameUtilities.dll", - "tools/x86/ilc/tools/WCFDispatchProxy.dll", "tools/x86/ilc/tools/c2n.dll", - "tools/x86/ilc/tools/cs/CciExtensions.resources.dll", - "tools/x86/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/cs/McgEngine.resources.dll", "tools/x86/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/cs/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/cs/sg.resources.dll", - "tools/x86/ilc/tools/de/CciExtensions.resources.dll", - "tools/x86/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/de/McgEngine.resources.dll", "tools/x86/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/de/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/de/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/de/sg.resources.dll", - "tools/x86/ilc/tools/es/CciExtensions.resources.dll", - "tools/x86/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/es/McgEngine.resources.dll", "tools/x86/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/es/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/es/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/es/sg.resources.dll", - "tools/x86/ilc/tools/fr/CciExtensions.resources.dll", - "tools/x86/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/fr/McgEngine.resources.dll", "tools/x86/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/fr/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/fr/sg.resources.dll", - "tools/x86/ilc/tools/it/CciExtensions.resources.dll", - "tools/x86/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/it/McgEngine.resources.dll", "tools/x86/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/it/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/it/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/it/sg.resources.dll", - "tools/x86/ilc/tools/ja/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ja/McgEngine.resources.dll", "tools/x86/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ja/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/ja/sg.resources.dll", - "tools/x86/ilc/tools/ko/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ko/McgEngine.resources.dll", "tools/x86/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ko/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/ko/sg.resources.dll", "tools/x86/ilc/tools/msdia.sxs.manifest", "tools/x86/ilc/tools/msdia120.dll", @@ -18638,65 +3955,75 @@ "tools/x86/ilc/tools/pgocvt.exe", "tools/x86/ilc/tools/pgodb140.dll", "tools/x86/ilc/tools/pgomgr.exe", - "tools/x86/ilc/tools/pl/CciExtensions.resources.dll", - "tools/x86/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/pl/McgEngine.resources.dll", + "tools/x86/ilc/tools/pgort140.dll", + "tools/x86/ilc/tools/pgosweep.exe", "tools/x86/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/pl/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/pl/sg.resources.dll", - "tools/x86/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/x86/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/pt-BR/McgEngine.resources.dll", "tools/x86/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/pt-BR/sg.resources.dll", "tools/x86/ilc/tools/rhbind.exe", - "tools/x86/ilc/tools/ru/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ru/McgEngine.resources.dll", "tools/x86/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ru/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/ru/sg.resources.dll", "tools/x86/ilc/tools/sg.exe", "tools/x86/ilc/tools/sg.exe.config", - "tools/x86/ilc/tools/tr/CciExtensions.resources.dll", - "tools/x86/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/tr/McgEngine.resources.dll", "tools/x86/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/tr/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/tr/sg.resources.dll", "tools/x86/ilc/tools/ucrtbase.dll", "tools/x86/ilc/tools/vcruntime140.dll", - "tools/x86/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/x86/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/zh-Hans/McgEngine.resources.dll", "tools/x86/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/zh-Hans/sg.resources.dll", - "tools/x86/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/x86/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/zh-Hant/McgEngine.resources.dll", "tools/x86/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", "tools/x86/ilc/tools/zh-Hant/sg.resources.dll", + "tools/x86/ilc/tools64/1033/nutcui.dll", + "tools/x86/ilc/tools64/ILCompiler.MetadataWriter.dll", + "tools/x86/ilc/tools64/StackTraceExceptions.txt", + "tools/x86/ilc/tools64/StackTraceMetadataProvider.dll", + "tools/x86/ilc/tools64/c2n.dll", + "tools/x86/ilc/tools64/msdia.sxs.manifest", + "tools/x86/ilc/tools64/msdia120.dll", + "tools/x86/ilc/tools64/msobj140.dll", + "tools/x86/ilc/tools64/mspdbcore.dll", + "tools/x86/ilc/tools64/msvcdis140.dll", + "tools/x86/ilc/tools64/msvcp140.dll", + "tools/x86/ilc/tools64/nutc_driver.exe", + "tools/x86/ilc/tools64/nutc_driver.exe.config", + "tools/x86/ilc/tools64/pgocvt.exe", + "tools/x86/ilc/tools64/pgodb140.dll", + "tools/x86/ilc/tools64/pgomgr.exe", + "tools/x86/ilc/tools64/pgort140.dll", + "tools/x86/ilc/tools64/pgosweep.exe", + "tools/x86/ilc/tools64/ucrtbase.dll", + "tools/x86/ilc/tools64/vcruntime140.dll", + "tools/x86/ilc/tr/CciExtensions.resources.dll", + "tools/x86/ilc/tr/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/tr/Ilc.resources.dll", + "tools/x86/ilc/tr/McgEngine.resources.dll", + "tools/x86/ilc/tr/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/tr/ReducerEngine.resources.dll", + "tools/x86/ilc/tr/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hans/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hans/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/zh-Hans/Ilc.resources.dll", + "tools/x86/ilc/zh-Hans/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hans/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hans/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hans/TypeNameUtilities.resources.dll", + "tools/x86/ilc/zh-Hant/CciExtensions.resources.dll", + "tools/x86/ilc/zh-Hant/Gatekeeper.Engine.resources.dll", "tools/x86/ilc/zh-Hant/Ilc.resources.dll", + "tools/x86/ilc/zh-Hant/McgEngine.resources.dll", + "tools/x86/ilc/zh-Hant/Microsoft.NetNative.IL2IL.resources.dll", + "tools/x86/ilc/zh-Hant/ReducerEngine.resources.dll", + "tools/x86/ilc/zh-Hant/TypeNameUtilities.resources.dll", "tools/x86/mrt100etw.dll" ] }, - "Microsoft.Net.Native.SharedLibrary-arm/1.7.0": { - "sha512": "eI4KNNMOpgpBkdXHFgmXD2l5gNdJJOV+ntN1Fwwnm93Rr7pmD8MGssJpI7wo7+uieaFIfAZ2waZjEnRR4Uu90A==", + "Microsoft.Net.Native.SharedLibrary-arm/2.0.0": { + "sha512": "9ghAlkZXl3GtgXlSEBQuP4ktYQnUDoSeQ/932iIHEA83vEIbBh+DPg6AHeMWaqZemeBrZ58P2oysVr7VOtrHOQ==", "type": "package", - "path": "microsoft.net.native.sharedlibrary-arm/1.7.0", + "path": "microsoft.net.native.sharedlibrary-arm/2.0.0", "files": [ - "Microsoft.Net.Native.SharedLibrary-arm.1.7.0.nupkg.sha512", + "Microsoft.Net.Native.SharedLibrary-arm.2.0.0.nupkg.sha512", "Microsoft.Net.Native.SharedLibrary-arm.nuspec", "build/Microsoft.Net.Native.SharedLibrary-arm.props", "build/Microsoft.Net.Native.SharedLibrary-arm.targets", @@ -18704,12 +4031,8 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", @@ -18726,40 +4049,36 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", @@ -18776,40 +4095,36 @@ "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", @@ -18826,64 +4141,42 @@ "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.0.appx", "tools/SharedLibrary/chk/Native/SharedLibrary.dll", "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/chk/SharedAssemblyList.txt", "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/chk/Toc/System.Linq.toc", "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", @@ -18892,28 +4185,24 @@ "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", @@ -18930,40 +4219,36 @@ "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", @@ -18980,40 +4265,36 @@ "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", @@ -19030,43 +4311,42 @@ "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.0.appx", "tools/SharedLibrary/ret/Native/SharedLibrary.dll", "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/ret/SharedAssemblyList.txt", "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/ret/Toc/System.Linq.toc", "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", @@ -19075,26 +4355,26 @@ "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" ] }, - "Microsoft.Net.Native.SharedLibrary-x64/1.7.0": { - "sha512": "3nrUuvayvlOdmx7yzUBu2PzKeQmZ0mwqhMfarOzt6X1tKjIrOONCFqH148rP7TgQDJBfKVSShB1f+BedF69emw==", + "Microsoft.Net.Native.SharedLibrary-x64/2.0.0": { + "sha512": "Qlk13ElLq3RHO54j/4P2l0pr40Hfm3tkrYCoYZpdNWsGSt7EU8L+XZFuiDkmNw5RO7sRkq3dvZfVCg9mppBcAA==", "type": "package", - "path": "microsoft.net.native.sharedlibrary-x64/1.7.0", + "path": "microsoft.net.native.sharedlibrary-x64/2.0.0", "files": [ - "Microsoft.Net.Native.SharedLibrary-x64.1.7.0.nupkg.sha512", + "Microsoft.Net.Native.SharedLibrary-x64.2.0.0.nupkg.sha512", "Microsoft.Net.Native.SharedLibrary-x64.nuspec", "build/Microsoft.Net.Native.SharedLibrary-x64.props", "build/Microsoft.Net.Native.SharedLibrary-x64.targets", @@ -19102,12 +4382,8 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", @@ -19124,40 +4400,36 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", @@ -19174,40 +4446,36 @@ "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", @@ -19224,64 +4492,42 @@ "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.0.appx", "tools/SharedLibrary/chk/Native/SharedLibrary.dll", "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/chk/SharedAssemblyList.txt", "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/chk/Toc/System.Linq.toc", "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", @@ -19290,28 +4536,24 @@ "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", @@ -19328,40 +4570,36 @@ "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", @@ -19378,40 +4616,36 @@ "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", @@ -19428,43 +4662,42 @@ "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.0.appx", "tools/SharedLibrary/ret/Native/SharedLibrary.dll", "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/ret/SharedAssemblyList.txt", "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/ret/Toc/System.Linq.toc", "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", @@ -19473,26 +4706,26 @@ "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" ] }, - "Microsoft.Net.Native.SharedLibrary-x86/1.7.0": { - "sha512": "nC682cBwXA/ITw1BKnPxMBp93uHHFPmG/X9P+mQt1yCJBXnEcNi7XzzOROmqMuNwwtk5ci/cQE4HQDytn3O39g==", + "Microsoft.Net.Native.SharedLibrary-x86/2.0.0": { + "sha512": "LExSkW6XHXyi4iIVhcGVN5sHmxXm8COAFGRhBAjhMdd75UD0Jbe9xtRpnTSfUdGmkQiLcydEW5uAw68Ye30RlQ==", "type": "package", - "path": "microsoft.net.native.sharedlibrary-x86/1.7.0", + "path": "microsoft.net.native.sharedlibrary-x86/2.0.0", "files": [ - "Microsoft.Net.Native.SharedLibrary-x86.1.7.0.nupkg.sha512", + "Microsoft.Net.Native.SharedLibrary-x86.2.0.0.nupkg.sha512", "Microsoft.Net.Native.SharedLibrary-x86.nuspec", "build/Microsoft.Net.Native.SharedLibrary-x86.props", "build/Microsoft.Net.Native.SharedLibrary-x86.targets", @@ -19500,12 +4733,8 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", @@ -19522,40 +4751,36 @@ "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", @@ -19572,40 +4797,36 @@ "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/chk/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", @@ -19622,64 +4843,42 @@ "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/chk/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.7.appx", + "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.2.0.appx", "tools/SharedLibrary/chk/Native/SharedLibrary.dll", "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", + "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/chk/SharedAssemblyList.txt", "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", + "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/chk/Toc/System.Linq.toc", "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", @@ -19688,28 +4887,24 @@ "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/chk/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/chk/Toc/System.Runtime.toc", + "tools/SharedLibrary/chk/Toc/System.Security.Principal.toc", "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", @@ -19726,40 +4921,36 @@ "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/AnalysisILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tools.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", @@ -19776,40 +4967,36 @@ "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Generated.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Private.StackTraceMetadata.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Runtime.iltocpdb", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltoc", + "tools/SharedLibrary/ret/ILToc/System.Security.Principal.iltocpdb", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tools.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", @@ -19826,43 +5013,42 @@ "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Generated.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Private.StackTraceMetadata.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Runtime.ilpdb", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ildll", + "tools/SharedLibrary/ret/ILTransformed/System.Security.Principal.ilpdb", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.7.appx", + "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.2.0.appx", "tools/SharedLibrary/ret/Native/SharedLibrary.dll", "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", + "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", "tools/SharedLibrary/ret/SharedAssemblyList.txt", "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", + "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tools.toc", "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", "tools/SharedLibrary/ret/Toc/System.Linq.toc", "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", @@ -19871,161 +5057,49 @@ "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", + "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Generated.toc", "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", + "tools/SharedLibrary/ret/Toc/System.Private.StackTraceMetadata.toc", "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", + "tools/SharedLibrary/ret/Toc/System.Runtime.toc", + "tools/SharedLibrary/ret/Toc/System.Security.Principal.toc", "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" ] }, - "Microsoft.NETCore/5.0.2": { - "sha512": "wHb/fpL+6IxrZBAL2BwRJmj51RwYr3TVcnw5KIsxUtqLxjsqgasTbBmE9kZPAlhhljnt+m2EYMc7vcFuAhGNqA==", + "Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "Lgwh58rl1g15JBcRYlEZjqNrfyOxf/RCZoxiC4x9A3ssXNOUdLrQiaWEyJYfxNQppKL/qE3M2CDg67W38Fz2Yw==", "type": "package", - "path": "microsoft.netcore/5.0.2", + "path": "microsoft.net.uwpcoreruntimesdk/2.1.2", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "microsoft.netcore.5.0.2.nupkg.sha512", - "microsoft.netcore.nuspec" + "LICENSE.TXT", + "Microsoft.Net.UWPCoreRuntimeSdk.2.1.2.nupkg.sha512", + "Microsoft.Net.UWPCoreRuntimeSdk.nuspec", + "THIRD-PARTY-NOTICES.TXT", + "build/Microsoft.Net.UWPCoreRuntimeSdk.props", + "tools/CoreRuntime/Microsoft.Build.Net.CoreRuntimeTask.dll", + "tools/CoreRuntime/Microsoft.Cci.dll", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.settings.targets", + "tools/CoreRuntime/Microsoft.Net.CoreRuntime.targets" ] }, - "Microsoft.NETCore.Jit/1.0.3": { - "sha512": "/l8xYwtoJrFSx9zMWRClaKrgR+BTstCD1E5P90ADgiwH0GwlEqVhLoFIrsXpYj0j9vCB/fzOq7D/ZzuCbtmrTQ==", + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", "type": "package", - "path": "microsoft.netcore.jit/1.0.3", + "path": "microsoft.netcore.platforms/2.0.0", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "microsoft.netcore.jit.1.0.3.nupkg.sha512", - "microsoft.netcore.jit.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", + "LICENSE.TXT", + "Microsoft.NETCore.Platforms.2.0.0.nupkg.sha512", + "Microsoft.NETCore.Platforms.nuspec", + "THIRD-PARTY-NOTICES.TXT", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "sha512": "sR4m1GQ8Tbg+Xdbf8Y8yC+LXKSUJUVe/B5vckCAU9Jd5MYf84gC1D0u2YeA72B4WjeWewCyHRB20ddA8hyLmqQ==", - "type": "package", - "path": "microsoft.netcore.portable.compatibility/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.dll", - "lib/netstandard1.0/System.ComponentModel.DataAnnotations.dll", - "lib/netstandard1.0/System.Core.dll", - "lib/netstandard1.0/System.Net.dll", - "lib/netstandard1.0/System.Numerics.dll", - "lib/netstandard1.0/System.Runtime.Serialization.dll", - "lib/netstandard1.0/System.ServiceModel.Web.dll", - "lib/netstandard1.0/System.ServiceModel.dll", - "lib/netstandard1.0/System.Windows.dll", - "lib/netstandard1.0/System.Xml.Linq.dll", - "lib/netstandard1.0/System.Xml.Serialization.dll", - "lib/netstandard1.0/System.Xml.dll", - "lib/netstandard1.0/System.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "microsoft.netcore.portable.compatibility.1.0.2.nupkg.sha512", - "microsoft.netcore.portable.compatibility.nuspec", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.dll", - "ref/netcore50/mscorlib.dll", - "ref/netstandard1.0/System.ComponentModel.DataAnnotations.dll", - "ref/netstandard1.0/System.Core.dll", - "ref/netstandard1.0/System.Net.dll", - "ref/netstandard1.0/System.Numerics.dll", - "ref/netstandard1.0/System.Runtime.Serialization.dll", - "ref/netstandard1.0/System.ServiceModel.Web.dll", - "ref/netstandard1.0/System.ServiceModel.dll", - "ref/netstandard1.0/System.Windows.dll", - "ref/netstandard1.0/System.Xml.Linq.dll", - "ref/netstandard1.0/System.Xml.Serialization.dll", - "ref/netstandard1.0/System.Xml.dll", - "ref/netstandard1.0/System.dll", - "ref/netstandard1.0/mscorlib.dll", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.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.Web.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "sha512": "tjD5r9Lxy+MD+YRJcuds5+sT+xGHkVt2Hb5LfLZIgkFmwUewBRPm/42UXi4oxhV1OIdRtt4ymwsiuFCwT16T9w==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr/1.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "microsoft.netcore.runtime.coreclr.1.0.3.nupkg.sha512", - "microsoft.netcore.runtime.coreclr.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" ] }, "Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { @@ -20315,105 +5389,131 @@ "runtime.json" ] }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "NETStandard.Library/2.0.1": { + "sha512": "oA6nwv9MhEKYvLpjZ0ggSpb1g4CQViDVQjLUcDWg598jtvJbpfeP2reqwI1GLW2TbxC/Ml7xL6BBR1HmKPXlTg==", "type": "package", - "path": "microsoft.netcore.windows.apisets/1.0.1", + "path": "netstandard.library/2.0.1", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "microsoft.netcore.windows.apisets.nuspec", - "runtime.json" - ] - }, - "Microsoft.VisualBasic/10.0.1": { - "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", - "type": "package", - "path": "microsoft.visualbasic/10.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/netstandard1.3/Microsoft.VisualBasic.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "microsoft.visualbasic.10.0.1.nupkg.sha512", - "microsoft.visualbasic.nuspec", - "ref/net45/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/netcore50/de/Microsoft.VisualBasic.xml", - "ref/netcore50/es/Microsoft.VisualBasic.xml", - "ref/netcore50/fr/Microsoft.VisualBasic.xml", - "ref/netcore50/it/Microsoft.VisualBasic.xml", - "ref/netcore50/ja/Microsoft.VisualBasic.xml", - "ref/netcore50/ko/Microsoft.VisualBasic.xml", - "ref/netcore50/ru/Microsoft.VisualBasic.xml", - "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", - "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/Microsoft.VisualBasic.dll", - "ref/netstandard1.1/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/NETStandard.Library.targets", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.1.nupkg.sha512", "netstandard.library.nuspec" ] }, @@ -20462,909 +5562,6 @@ "propertychanged.fody.nuspec" ] }, - "runtime.any.System.Collections/4.3.0": { - "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "type": "package", - "path": "runtime.any.system.collections/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.collections.4.3.0.nupkg.sha512", - "runtime.any.system.collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "type": "package", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/netstandard1.3/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tools.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.3.0": { - "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "type": "package", - "path": "runtime.any.system.globalization/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "type": "package", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net/_._", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/netstandard1.3/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.calendars.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.3.0": { - "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "type": "package", - "path": "runtime.any.system.io/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.io.4.3.0.nupkg.sha512", - "runtime.any.system.io.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.3.0": { - "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "type": "package", - "path": "runtime.any.system.reflection/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "runtime.any.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.3.0": { - "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/netstandard1.6/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", - "runtime.any.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "type": "package", - "path": "runtime.any.system.threading.timer/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/netstandard1.3/System.Threading.Timer.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.timer.4.3.0.nupkg.sha512", - "runtime.any.system.threading.timer.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.aot.System.Collections/4.3.0": { - "sha512": "oIRYUjjkmxyxtbdyo2uslKneprTYyfu3exJnG2g2kfNK9I/SkgtZ3Ayynlr93aaasZs5PNvYfvHpZW/3QwQg4Q==", - "type": "package", - "path": "runtime.aot.system.collections/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.collections.4.3.0.nupkg.sha512", - "runtime.aot.system.collections.nuspec", - "runtimes/aot/lib/netcore50/System.Collections.dll" - ] - }, - "runtime.aot.System.Diagnostics.Tools/4.3.0": { - "sha512": "Sry/JfiffR1IBLanHobuD+Iaf1aeNKCrmmB7ycHREnMwxDBexYaXQ0cHoxlApYze5EYKG/XXWHWFYEx3Ep2xgA==", - "type": "package", - "path": "runtime.aot.system.diagnostics.tools/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.diagnostics.tools.4.3.0.nupkg.sha512", - "runtime.aot.system.diagnostics.tools.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll" - ] - }, - "runtime.aot.System.Diagnostics.Tracing/4.3.0": { - "sha512": "N5oWCovFjd/RQbiWBn3KTPCfX5mxj7cAOPSnNmm1ChyPcpiHy+WPEZt1f/Z8yoegEStUkC2Ukh+2mxM9Hpbv2w==", - "type": "package", - "path": "runtime.aot.system.diagnostics.tracing/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "runtime.aot.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll" - ] - }, - "runtime.aot.System.Globalization/4.3.0": { - "sha512": "JGVbV0rYZGFq44g2wd1pmm/CfcxiqyjwclO9WTzRcUT+SJvj097u1DoaXt/epyT5lOTkbOkEBqgl9hZlKvMf9g==", - "type": "package", - "path": "runtime.aot.system.globalization/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.globalization.4.3.0.nupkg.sha512", - "runtime.aot.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/System.Globalization.dll" - ] - }, - "runtime.aot.System.Globalization.Calendars/4.3.0": { - "sha512": "HSiIdDAwkvlGy8MYdI4MLcks+kyYeAWMHoqMmFsXlEMypaYG/Yf8iYLdyzNuJcrnCXE31wEChsfgTEyo0AG7Ew==", - "type": "package", - "path": "runtime.aot.system.globalization.calendars/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.globalization.calendars.4.3.0.nupkg.sha512", - "runtime.aot.system.globalization.calendars.nuspec", - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll" - ] - }, - "runtime.aot.System.IO/4.3.0": { - "sha512": "Hh4Acaw1LDirS2SRU3H8vjcdQDfWbJzP/6TacuIrmkzBvnmPMV0npB7BvZ3ODa2uyqdynrXx7/M60ufqrrVz/g==", - "type": "package", - "path": "runtime.aot.system.io/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.io.4.3.0.nupkg.sha512", - "runtime.aot.system.io.nuspec", - "runtimes/aot/lib/netcore50/System.IO.dll", - "runtimes/aot/lib/netstandard1.3/System.IO.dll" - ] - }, - "runtime.aot.System.Reflection/4.3.0": { - "sha512": "RtPByBmixEVC003nTtg9rGk+hogh8u3Tjd2Ap9WtYchddErK+EfOWhWEWSNfrlfHSep0fPZyjLXye+bdDqeqyQ==", - "type": "package", - "path": "runtime.aot.system.reflection/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.reflection.4.3.0.nupkg.sha512", - "runtime.aot.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/System.Reflection.dll" - ] - }, - "runtime.aot.System.Reflection.Extensions/4.3.0": { - "sha512": "d2g/03MJAxr3c/mIlIwZghxfK/BBfofn+FPni7K9ec7YfZp1yXCWfs/GijOmVAE55UBkzeZlfEbEuuA5ElLPlg==", - "type": "package", - "path": "runtime.aot.system.reflection.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.reflection.extensions.4.3.0.nupkg.sha512", - "runtime.aot.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll" - ] - }, - "runtime.aot.System.Reflection.Primitives/4.3.0": { - "sha512": "H8uucvnpgVnZizQqLfkfISLPfJ4SwTiZdhkciAZniRCjRR4iW23npVeAQVhsdaMsy1tVFt4lJgfzrbvQElRGlA==", - "type": "package", - "path": "runtime.aot.system.reflection.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.reflection.primitives.4.3.0.nupkg.sha512", - "runtime.aot.system.reflection.primitives.nuspec", - "runtimes/aot/lib/MonoAndroid10/_._", - "runtimes/aot/lib/MonoTouch10/_._", - "runtimes/aot/lib/net45/_._", - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll", - "runtimes/aot/lib/win8/_._", - "runtimes/aot/lib/wp80/_._", - "runtimes/aot/lib/wpa81/_._", - "runtimes/aot/lib/xamarinios10/_._", - "runtimes/aot/lib/xamarinmac20/_._", - "runtimes/aot/lib/xamarintvos10/_._", - "runtimes/aot/lib/xamarinwatchos10/_._" - ] - }, - "runtime.aot.System.Resources.ResourceManager/4.3.0": { - "sha512": "UuU/71bzofPYs0edqzGObX8yJ0JzwxWPK8W1OC0EddWbLTOkmlDUAefJTiDqN0/UZYHMOHX5lJCwgXLsV3c/4A==", - "type": "package", - "path": "runtime.aot.system.resources.resourcemanager/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "runtime.aot.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll" - ] - }, - "runtime.aot.System.Runtime/4.3.0": { - "sha512": "+v3ECNS5te29NRB7qhY2Ea3KKK1ACWEoGRcicbXm79HqFi7eL0IuqPpCpv43MMVUWxGcnrP8+PdktB2c2P0L0w==", - "type": "package", - "path": "runtime.aot.system.runtime/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.runtime.4.3.0.nupkg.sha512", - "runtime.aot.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.dll" - ] - }, - "runtime.aot.System.Runtime.Handles/4.3.0": { - "sha512": "ZAj0jGdfc7XhE8Ax9vVG4AJnBK/Bcd6qOfaEmI310KINj5g/4BzVNroxympBwiYsGFXbp8c1Urlb4TvNIbgbGg==", - "type": "package", - "path": "runtime.aot.system.runtime.handles/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.runtime.handles.4.3.0.nupkg.sha512", - "runtime.aot.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll" - ] - }, - "runtime.aot.System.Runtime.InteropServices/4.3.0": { - "sha512": "LfLCyGN9KNe3B4Dnytcqo1Q53FhenzdSaHrUSHRdwQAPnfRJg2FPlBAD8DKlCiIL8q0VzMLGD0PSG0D93ZxgMw==", - "type": "package", - "path": "runtime.aot.system.runtime.interopservices/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.runtime.interopservices.4.3.0.nupkg.sha512", - "runtime.aot.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll" - ] - }, - "runtime.aot.System.Text.Encoding/4.3.0": { - "sha512": "oFUYKrchmj4Y9BVT/VgCdUZkvvo0geGntd6Ojz27jsQcu0NDNcYK62arI0/LVQOYCVrQIdUfFMJqCjS4YQidJg==", - "type": "package", - "path": "runtime.aot.system.text.encoding/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.text.encoding.4.3.0.nupkg.sha512", - "runtime.aot.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll" - ] - }, - "runtime.aot.System.Text.Encoding.Extensions/4.3.0": { - "sha512": "pxSiZre1BBpXurLR4HdFk5PKQHvLwB2wYc8xSaZV34y/zojUFTOJtMHprjXW217p72aR4llwVrp4WVlDppXcGw==", - "type": "package", - "path": "runtime.aot.system.text.encoding.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "runtime.aot.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll" - ] - }, - "runtime.aot.System.Threading.Tasks/4.3.0": { - "sha512": "xkNtSW7Xcy3gauT0tEc5FgA2FviuG+QsPNEo3hf/pdOWCXHIQtLBJCWwXnc0B3VpCLSJB6A2zQ5XIxHS9mBkmQ==", - "type": "package", - "path": "runtime.aot.system.threading.tasks/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.threading.tasks.4.3.0.nupkg.sha512", - "runtime.aot.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll" - ] - }, - "runtime.aot.System.Threading.Timer/4.3.0": { - "sha512": "FdzqGdxrXAOZmKd4ung3i7jC6jGlqDtwvq7zm6Z1ttqJ8vUChh99W+8y2K/CsGCLtGwYGtgT2uOKWmjQwi74Mw==", - "type": "package", - "path": "runtime.aot.system.threading.timer/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.system.threading.timer.4.3.0.nupkg.sha512", - "runtime.aot.system.threading.timer.nuspec", - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", - "type": "package", - "path": "runtime.win.microsoft.win32.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", - "runtime.win.microsoft.win32.primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" - ] - }, - "runtime.win.System.Console/4.3.0": { - "sha512": "RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", - "type": "package", - "path": "runtime.win.system.console/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.console.4.3.0.nupkg.sha512", - "runtime.win.system.console.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Console.dll", - "runtimes/win/lib/netstandard1.3/System.Console.dll" - ] - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", - "type": "package", - "path": "runtime.win.system.diagnostics.debug/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", - "runtime.win.system.diagnostics.debug.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp80/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", - "type": "package", - "path": "runtime.win.system.io.filesystem/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", - "runtime.win.system.io.filesystem.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp8/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", - "type": "package", - "path": "runtime.win.system.net.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.net.primitives.4.3.0.nupkg.sha512", - "runtime.win.system.net.primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Primitives.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" - ] - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "sha512": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", - "type": "package", - "path": "runtime.win.system.net.sockets/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.net.sockets.4.3.0.nupkg.sha512", - "runtime.win.system.net.sockets.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Sockets.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" - ] - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", - "type": "package", - "path": "runtime.win.system.runtime.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", - "runtime.win.system.runtime.extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" - ] - }, "runtime.win10-arm-aot.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { "sha512": "mCcoolv8UTrTcmRktwjlPk4N+kjcoJDFEI6cH/kT72zv31Mf5HH7/H99q6lNwSF1dXZAeZbzBXJcDOKFMJoKTw==", "type": "package", @@ -21542,16 +5739,21 @@ "runtimes/win10-arm-aot/nativeassets/uap10.0.15138/clrcompression.dll" ] }, - "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "fzsKrHHfrv6wpLE1sxAHcWoB9vpAyoNjxVTnBJkzeXow2ZivR1H7wdpnsoKXIIb0d2EzYrrezHeHy4gI6tqqTA==", + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "J4XdbbcvE2iUCsup3rwOsZYaohWLIuP1IW/etf0bwQ9vWCqccuHO3yAWiaWZmWn7nn53PEJ9lZTfNNAiIm/bBw==", "type": "package", - "path": "runtime.win10-arm-aot.runtime.native.system.io.compression/4.0.1", + "path": "runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/2.1.2", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-arm-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", - "runtime.win10-arm-aot.runtime.native.system.io.compression.nuspec", - "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll" + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.2.1.2.nupkg.sha512", + "runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" ] }, "runtime.win10-arm.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { @@ -21907,16 +6109,21 @@ "runtimes/win10-x64-aot/nativeassets/uap10.0.15138/clrcompression.dll" ] }, - "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "qr2+iGSxqUjVW3eATYzV4GHN6qQOu5cDTzCGf7VZ4aaxXGv2P/XVk9BkQ6WdPCDitEdIuWmtFYIFvGdvY/qN6Q==", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "Mj9j4vg9yIdvppce0eC8+EIhLmv3Uv3CNKi2v84Fl5zeSs26w9l2svE2LTixB5OTE/pj2p7cW2lUMHeWWm1tgg==", "type": "package", - "path": "runtime.win10-x64-aot.runtime.native.system.io.compression/4.0.1", + "path": "runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/2.1.2", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-x64-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", - "runtime.win10-x64-aot.runtime.native.system.io.compression.nuspec", - "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll" + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.2.1.2.nupkg.sha512", + "runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" ] }, "runtime.win10-x64.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { @@ -22272,16 +6479,21 @@ "runtimes/win10-x86-aot/nativeassets/uap10.0.15138/clrcompression.dll" ] }, - "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "c3yeCSi1emskJMjeqbX6B+neZRozhYk4et/Lv/6s05Yz30jcwY2Mj5PAr7mvmlAZtP5+HLbxz+Ux+RNNM/1GUA==", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk/2.1.2": { + "sha512": "MeYqB6D7vA9eRb2fDjN9LWTLAY+m5Ocg4SBoEtG1oLPXgfuJcUNUb+etdsid/V3j7jgr4ito60Wr8U03mmJGuA==", "type": "package", - "path": "runtime.win10-x86-aot.runtime.native.system.io.compression/4.0.1", + "path": "runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/2.1.2", "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-x86-aot.runtime.native.system.io.compression.4.0.1.nupkg.sha512", - "runtime.win10-x86-aot.runtime.native.system.io.compression.nuspec", - "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll" + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.props", + "build/runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.targets", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.2.1.2.nupkg.sha512", + "runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.nuspec", + "tools/AppLocal/consoleuwpshim.exe", + "tools/AppLocal/uwpshim.exe", + "tools/Appx/Microsoft.NET.CoreRuntime.2.1.appx", + "tools/CoreRuntime/copywin32resources.exe" ] }, "runtime.win10-x86.Microsoft.NETCore.UniversalWindowsPlatform/6.0.8": { @@ -22460,5190 +6672,6 @@ "runtimes/win10-x86/nativeassets/uap10.0.15138/clrcompression.dll" ] }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "sha512": "pXLZyhN1gFNVjmmZloXzGxbdZyUjkiHKpojzxUxCZ2U+T0jD6ooK3rYhwqFzlSjVKUAdQ9QNDoixxnEr3/5VWw==", - "type": "package", - "path": "runtime.win7-x64.microsoft.netcore.jit/1.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x64.microsoft.netcore.jit.1.0.3.nupkg.sha512", - "runtime.win7-x64.microsoft.netcore.jit.nuspec", - "runtimes/win7-x64-aot/native/_._", - "runtimes/win7-x64/native/clrjit.dll" - ] - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "YaXA5RVLCYIcV1N31A7MJhWJnNkNfGnyRBNH1yYilUrBDvzMxNsbXX2pD7owWsC/go/4LRwbHbdWWXwHowKNvw==", - "type": "package", - "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win7-x64.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", - "runtime.win7-x64.microsoft.netcore.runtime.coreclr.nuspec", - "runtimes/win7-x64-aot/lib/netstandard1.0/_._", - "runtimes/win7-x64-aot/native/_._", - "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll", - "runtimes/win7-x64/native/System.Private.CoreLib.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/mscorlib.ni.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll", - "runtimes/win7-x64/native/sos.dll", - "tools/crossgen.exe" - ] - }, - "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.0": { - "sha512": "UamDlgSO/nIzc96M+g3wbvAGbAuXjvRYR5Ttm/FVJgt2iva8ouOqSJ0j6eGI7pZDLvD/ZISl9XRZOajE/Xvizg==", - "type": "package", - "path": "runtime.win7-x64.runtime.native.system.io.compression/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.win7-x64.runtime.native.system.io.compression.nuspec", - "runtimes/win7-x64/native/clrcompression.dll" - ] - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "sha512": "bU1EUneMeB6JltMNDCekL7nP1dluxOlnUgmAFx8EGsD6a+lgaYoDLk7V7F3H5Zpw/LeCxl5XmZqgPObGAlW7Dg==", - "type": "package", - "path": "runtime.win7-x86.microsoft.netcore.jit/1.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x86.microsoft.netcore.jit.1.0.3.nupkg.sha512", - "runtime.win7-x86.microsoft.netcore.jit.nuspec", - "runtimes/win7-x86-aot/native/_._", - "runtimes/win7-x86/native/clrjit.dll" - ] - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "80Jj8QlMLAnTq+BDhoHBnSNXRKqVjjZM9VjHcpw9/F98cBmh80rBdbnM0AAr54htjhzupYvwLqwuKnlzxec04A==", - "type": "package", - "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win7-x86.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", - "runtime.win7-x86.microsoft.netcore.runtime.coreclr.nuspec", - "runtimes/win7-x86-aot/lib/netstandard1.0/_._", - "runtimes/win7-x86-aot/native/_._", - "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll", - "runtimes/win7-x86/native/System.Private.CoreLib.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/mscorlib.ni.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll", - "runtimes/win7-x86/native/sos.dll", - "tools/crossgen.exe" - ] - }, - "runtime.win7-x86.runtime.native.System.IO.Compression/4.3.0": { - "sha512": "99pM1ZhX7dPNnr/dOxuAxnVl/2XNWRh1WAUfesV3ZKwbR6mnEzpfbz2GX69zrpGvKbEytsjMKCD+auvvH6f7kA==", - "type": "package", - "path": "runtime.win7-x86.runtime.native.system.io.compression/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x86.runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.win7-x86.runtime.native.system.io.compression.nuspec", - "runtimes/win7-x86/native/clrcompression.dll" - ] - }, - "runtime.win7.System.Private.Uri/4.3.0": { - "sha512": "Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==", - "type": "package", - "path": "runtime.win7.system.private.uri/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win7.system.private.uri.4.3.0.nupkg.sha512", - "runtime.win7.system.private.uri.nuspec", - "runtimes/aot/lib/netcore50/System.Private.Uri.dll", - "runtimes/win/lib/netcore50/System.Private.Uri.dll", - "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll" - ] - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "0V6sq7Dg0bQPrJtm/Qw5Zu0e7gidnRPLaqUhKIkLYzVn64jkat+JnR6LcezryD3c0Wuva/MdJWYSAaOPq5V/Zw==", - "type": "package", - "path": "runtime.win8-arm.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win8-arm.microsoft.netcore.runtime.coreclr.1.0.2.nupkg.sha512", - "runtime.win8-arm.microsoft.netcore.runtime.coreclr.nuspec", - "runtimes/win8-arm-aot/lib/netstandard1.0/_._", - "runtimes/win8-arm-aot/native/_._", - "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll", - "runtimes/win8-arm/native/System.Private.CoreLib.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/mscorlib.ni.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll", - "runtimes/win8-arm/native/sos.dll", - "tools/crossgen.exe", - "tools/sos.dll" - ] - }, - "runtime.win8-arm.runtime.native.System.IO.Compression/4.3.0": { - "sha512": "Vq1+MgltEQZEIvEhkw+gdEkm2+6QHvJCbX+/fdTmed37Rx18+GMLzGwNd81qb2VfpK6ywFQuB3rC28QkuOJGVg==", - "type": "package", - "path": "runtime.win8-arm.runtime.native.system.io.compression/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win8-arm.runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.win8-arm.runtime.native.system.io.compression.nuspec", - "runtimes/win8-arm/native/clrcompression.dll" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.3.0": { - "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "type": "package", - "path": "system.buffers/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/.xml", - "lib/netstandard1.1/System.Buffers.dll", - "system.buffers.4.3.0.nupkg.sha512", - "system.buffers.nuspec" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", - "type": "package", - "path": "system.collections.immutable/1.2.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.2.0.nupkg.sha512", - "system.collections.immutable.nuspec" - ] - }, - "System.Collections.NonGeneric/4.0.1": { - "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.0.1.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.0.1": { - "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "type": "package", - "path": "system.collections.specialized/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.0.1.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "type": "package", - "path": "system.componentmodel/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.0.1.nupkg.sha512", - "system.componentmodel.nuspec" - ] - }, - "System.ComponentModel.Annotations/4.1.0": { - "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", - "type": "package", - "path": "system.componentmodel.annotations/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.4.1.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512", - "system.componentmodel.eventbasedasync.nuspec" - ] - }, - "System.ComponentModel.Primitives/4.3.0": { - "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Data.Common/4.1.0": { - "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==", - "type": "package", - "path": "system.data.common/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/System.Data.Common.dll", - "lib/netstandard1.2/System.Data.Common.dll", - "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.xml", - "ref/netstandard1.2/de/System.Data.Common.xml", - "ref/netstandard1.2/es/System.Data.Common.xml", - "ref/netstandard1.2/fr/System.Data.Common.xml", - "ref/netstandard1.2/it/System.Data.Common.xml", - "ref/netstandard1.2/ja/System.Data.Common.xml", - "ref/netstandard1.2/ko/System.Data.Common.xml", - "ref/netstandard1.2/ru/System.Data.Common.xml", - "ref/netstandard1.2/zh-hans/System.Data.Common.xml", - "ref/netstandard1.2/zh-hant/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.data.common.4.1.0.nupkg.sha512", - "system.data.common.nuspec" - ] - }, - "System.Diagnostics.Contracts/4.3.0": { - "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==", - "type": "package", - "path": "system.diagnostics.contracts/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/netstandard1.0/System.Diagnostics.Contracts.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/netcore50/de/System.Diagnostics.Contracts.xml", - "ref/netcore50/es/System.Diagnostics.Contracts.xml", - "ref/netcore50/fr/System.Diagnostics.Contracts.xml", - "ref/netcore50/it/System.Diagnostics.Contracts.xml", - "ref/netcore50/ja/System.Diagnostics.Contracts.xml", - "ref/netcore50/ko/System.Diagnostics.Contracts.xml", - "ref/netcore50/ru/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/System.Diagnostics.Contracts.dll", - "ref/netstandard1.0/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "system.diagnostics.contracts.4.3.0.nupkg.sha512", - "system.diagnostics.contracts.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec" - ] - }, - "System.Diagnostics.StackTrace/4.0.2": { - "sha512": "MmP424iVWLyeW7XGtwC5NyfzsIwodFKwhW6yns3d+Sh8WFsFoPWq2cUlJJDAteapIm2qoJ8fc3VwIUroolbsEA==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "system.diagnostics.stacktrace.4.0.2.nupkg.sha512", - "system.diagnostics.stacktrace.nuspec" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "type": "package", - "path": "system.globalization.extensions/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.0.1.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.IsolatedStorage/4.0.1": { - "sha512": "PuSuDi3FV84wh6RbF+Dvr0BvLJ6MCpvNIdVE3K0sSnOVKEV7mOQ0qnEvO1tWjxquMaugULTxJHHLaxkCHCz4IQ==", - "type": "package", - "path": "system.io.isolatedstorage/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcore50/System.IO.IsolatedStorage.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.4/System.IO.IsolatedStorage.dll", - "ref/netstandard1.4/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/de/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/es/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/fr/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/it/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ja/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ko/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ru/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/zh-hans/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/zh-hant/System.IO.IsolatedStorage.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.isolatedstorage.4.0.1.nupkg.sha512", - "system.io.isolatedstorage.nuspec" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", - "type": "package", - "path": "system.io.unmanagedmemorystream/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512", - "system.io.unmanagedmemorystream.nuspec" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Linq.Parallel/4.0.1": { - "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", - "type": "package", - "path": "system.linq.parallel/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/netstandard1.3/System.Linq.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/netcore50/de/System.Linq.Parallel.xml", - "ref/netcore50/es/System.Linq.Parallel.xml", - "ref/netcore50/fr/System.Linq.Parallel.xml", - "ref/netcore50/it/System.Linq.Parallel.xml", - "ref/netcore50/ja/System.Linq.Parallel.xml", - "ref/netcore50/ko/System.Linq.Parallel.xml", - "ref/netcore50/ru/System.Linq.Parallel.xml", - "ref/netcore50/zh-hans/System.Linq.Parallel.xml", - "ref/netcore50/zh-hant/System.Linq.Parallel.xml", - "ref/netstandard1.1/System.Linq.Parallel.dll", - "ref/netstandard1.1/System.Linq.Parallel.xml", - "ref/netstandard1.1/de/System.Linq.Parallel.xml", - "ref/netstandard1.1/es/System.Linq.Parallel.xml", - "ref/netstandard1.1/fr/System.Linq.Parallel.xml", - "ref/netstandard1.1/it/System.Linq.Parallel.xml", - "ref/netstandard1.1/ja/System.Linq.Parallel.xml", - "ref/netstandard1.1/ko/System.Linq.Parallel.xml", - "ref/netstandard1.1/ru/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.parallel.4.0.1.nupkg.sha512", - "system.linq.parallel.nuspec" - ] - }, - "System.Linq.Queryable/4.0.1": { - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "type": "package", - "path": "system.linq.queryable/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/netstandard1.3/System.Linq.Queryable.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/netcore50/de/System.Linq.Queryable.xml", - "ref/netcore50/es/System.Linq.Queryable.xml", - "ref/netcore50/fr/System.Linq.Queryable.xml", - "ref/netcore50/it/System.Linq.Queryable.xml", - "ref/netcore50/ja/System.Linq.Queryable.xml", - "ref/netcore50/ko/System.Linq.Queryable.xml", - "ref/netcore50/ru/System.Linq.Queryable.xml", - "ref/netcore50/zh-hans/System.Linq.Queryable.xml", - "ref/netcore50/zh-hant/System.Linq.Queryable.xml", - "ref/netstandard1.0/System.Linq.Queryable.dll", - "ref/netstandard1.0/System.Linq.Queryable.xml", - "ref/netstandard1.0/de/System.Linq.Queryable.xml", - "ref/netstandard1.0/es/System.Linq.Queryable.xml", - "ref/netstandard1.0/fr/System.Linq.Queryable.xml", - "ref/netstandard1.0/it/System.Linq.Queryable.xml", - "ref/netstandard1.0/ja/System.Linq.Queryable.xml", - "ref/netstandard1.0/ko/System.Linq.Queryable.xml", - "ref/netstandard1.0/ru/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.queryable.4.0.1.nupkg.sha512", - "system.linq.queryable.nuspec" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.Http.Rtc/4.0.1": { - "sha512": "o2AlTAvlZOc0dRUpmr379G57VUjSQ+JO7X2vIduaV+zReroM7WVwvtg6q1tGBrT4aVFvqWPDavWuBgSMTwugyw==", - "type": "package", - "path": "system.net.http.rtc/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/win8/_._", - "ref/netcore50/System.Net.Http.Rtc.dll", - "ref/netcore50/System.Net.Http.Rtc.xml", - "ref/netcore50/de/System.Net.Http.Rtc.xml", - "ref/netcore50/es/System.Net.Http.Rtc.xml", - "ref/netcore50/fr/System.Net.Http.Rtc.xml", - "ref/netcore50/it/System.Net.Http.Rtc.xml", - "ref/netcore50/ja/System.Net.Http.Rtc.xml", - "ref/netcore50/ko/System.Net.Http.Rtc.xml", - "ref/netcore50/ru/System.Net.Http.Rtc.xml", - "ref/netcore50/zh-hans/System.Net.Http.Rtc.xml", - "ref/netcore50/zh-hant/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/System.Net.Http.Rtc.dll", - "ref/netstandard1.1/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/de/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/es/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/fr/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/it/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ja/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ko/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ru/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.Rtc.xml", - "ref/win8/_._", - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll", - "system.net.http.rtc.4.0.1.nupkg.sha512", - "system.net.http.rtc.nuspec" - ] - }, - "System.Net.NameResolution/4.0.0": { - "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", - "type": "package", - "path": "system.net.nameresolution/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.NameResolution.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.xml", - "ref/netstandard1.3/de/System.Net.NameResolution.xml", - "ref/netstandard1.3/es/System.Net.NameResolution.xml", - "ref/netstandard1.3/fr/System.Net.NameResolution.xml", - "ref/netstandard1.3/it/System.Net.NameResolution.xml", - "ref/netstandard1.3/ja/System.Net.NameResolution.xml", - "ref/netstandard1.3/ko/System.Net.NameResolution.xml", - "ref/netstandard1.3/ru/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win/lib/net46/System.Net.NameResolution.dll", - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", - "system.net.nameresolution.4.0.0.nupkg.sha512", - "system.net.nameresolution.nuspec" - ] - }, - "System.Net.NameResolution/4.3.0": { - "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", - "type": "package", - "path": "system.net.nameresolution/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.NameResolution.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.xml", - "ref/netstandard1.3/de/System.Net.NameResolution.xml", - "ref/netstandard1.3/es/System.Net.NameResolution.xml", - "ref/netstandard1.3/fr/System.Net.NameResolution.xml", - "ref/netstandard1.3/it/System.Net.NameResolution.xml", - "ref/netstandard1.3/ja/System.Net.NameResolution.xml", - "ref/netstandard1.3/ko/System.Net.NameResolution.xml", - "ref/netstandard1.3/ru/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win/lib/net46/System.Net.NameResolution.dll", - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", - "system.net.nameresolution.4.3.0.nupkg.sha512", - "system.net.nameresolution.nuspec" - ] - }, - "System.Net.NetworkInformation/4.1.0": { - "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==", - "type": "package", - "path": "system.net.networkinformation/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.NetworkInformation.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/netcore50/de/System.Net.NetworkInformation.xml", - "ref/netcore50/es/System.Net.NetworkInformation.xml", - "ref/netcore50/fr/System.Net.NetworkInformation.xml", - "ref/netcore50/it/System.Net.NetworkInformation.xml", - "ref/netcore50/ja/System.Net.NetworkInformation.xml", - "ref/netcore50/ko/System.Net.NetworkInformation.xml", - "ref/netcore50/ru/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/System.Net.NetworkInformation.dll", - "ref/netstandard1.0/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/System.Net.NetworkInformation.dll", - "ref/netstandard1.3/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/win/lib/net46/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "system.net.networkinformation.4.1.0.nupkg.sha512", - "system.net.networkinformation.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Requests/4.0.11": { - "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", - "type": "package", - "path": "system.net.requests/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/_._", - "ref/netcore50/System.Net.Requests.dll", - "ref/netcore50/System.Net.Requests.xml", - "ref/netcore50/de/System.Net.Requests.xml", - "ref/netcore50/es/System.Net.Requests.xml", - "ref/netcore50/fr/System.Net.Requests.xml", - "ref/netcore50/it/System.Net.Requests.xml", - "ref/netcore50/ja/System.Net.Requests.xml", - "ref/netcore50/ko/System.Net.Requests.xml", - "ref/netcore50/ru/System.Net.Requests.xml", - "ref/netcore50/zh-hans/System.Net.Requests.xml", - "ref/netcore50/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.0/System.Net.Requests.dll", - "ref/netstandard1.0/System.Net.Requests.xml", - "ref/netstandard1.0/de/System.Net.Requests.xml", - "ref/netstandard1.0/es/System.Net.Requests.xml", - "ref/netstandard1.0/fr/System.Net.Requests.xml", - "ref/netstandard1.0/it/System.Net.Requests.xml", - "ref/netstandard1.0/ja/System.Net.Requests.xml", - "ref/netstandard1.0/ko/System.Net.Requests.xml", - "ref/netstandard1.0/ru/System.Net.Requests.xml", - "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.1/System.Net.Requests.dll", - "ref/netstandard1.1/System.Net.Requests.xml", - "ref/netstandard1.1/de/System.Net.Requests.xml", - "ref/netstandard1.1/es/System.Net.Requests.xml", - "ref/netstandard1.1/fr/System.Net.Requests.xml", - "ref/netstandard1.1/it/System.Net.Requests.xml", - "ref/netstandard1.1/ja/System.Net.Requests.xml", - "ref/netstandard1.1/ko/System.Net.Requests.xml", - "ref/netstandard1.1/ru/System.Net.Requests.xml", - "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.3/System.Net.Requests.dll", - "ref/netstandard1.3/System.Net.Requests.xml", - "ref/netstandard1.3/de/System.Net.Requests.xml", - "ref/netstandard1.3/es/System.Net.Requests.xml", - "ref/netstandard1.3/fr/System.Net.Requests.xml", - "ref/netstandard1.3/it/System.Net.Requests.xml", - "ref/netstandard1.3/ja/System.Net.Requests.xml", - "ref/netstandard1.3/ko/System.Net.Requests.xml", - "ref/netstandard1.3/ru/System.Net.Requests.xml", - "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", - "runtimes/win/lib/net46/_._", - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll", - "system.net.requests.4.0.11.nupkg.sha512", - "system.net.requests.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.Net.WebHeaderCollection/4.0.1": { - "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", - "type": "package", - "path": "system.net.webheadercollection/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", - "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.webheadercollection.4.0.1.nupkg.sha512", - "system.net.webheadercollection.nuspec" - ] - }, - "System.Net.WebSockets/4.0.0": { - "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==", - "type": "package", - "path": "system.net.websockets/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.dll", - "lib/netstandard1.3/System.Net.WebSockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.dll", - "ref/netstandard1.3/System.Net.WebSockets.dll", - "ref/netstandard1.3/System.Net.WebSockets.xml", - "ref/netstandard1.3/de/System.Net.WebSockets.xml", - "ref/netstandard1.3/es/System.Net.WebSockets.xml", - "ref/netstandard1.3/fr/System.Net.WebSockets.xml", - "ref/netstandard1.3/it/System.Net.WebSockets.xml", - "ref/netstandard1.3/ja/System.Net.WebSockets.xml", - "ref/netstandard1.3/ko/System.Net.WebSockets.xml", - "ref/netstandard1.3/ru/System.Net.WebSockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.websockets.4.0.0.nupkg.sha512", - "system.net.websockets.nuspec" - ] - }, - "System.Net.WebSockets.Client/4.0.2": { - "sha512": "NUCcDroX4lCQXgOrzlwIZ1u9YJ0krfyF0wk0ONnyLUmcQoEiYV2/OfUPRqUwQBbpH1BlGApkLgoQUwMqb5+c1g==", - "type": "package", - "path": "system.net.websockets.client/4.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.Client.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.Client.dll", - "ref/netstandard1.3/System.Net.WebSockets.Client.dll", - "ref/netstandard1.3/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/de/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/es/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/it/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/net46/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll", - "system.net.websockets.client.4.0.2.nupkg.sha512", - "system.net.websockets.client.nuspec" - ] - }, - "System.Numerics.Vectors/4.1.1": { - "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", - "type": "package", - "path": "system.numerics.vectors/4.1.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.1.1.nupkg.sha512", - "system.numerics.vectors.nuspec" - ] - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "sha512": "T4RJY6Z+0AuynCnMy8VMyP1g2mrB/OGubx5Og6d8ve6LkVLPrpiGtV5iMJeBv7lTDF1zhviILg+LecgKBjkWag==", - "type": "package", - "path": "system.numerics.vectors.windowsruntime/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll", - "system.numerics.vectors.windowsruntime.4.0.1.nupkg.sha512", - "system.numerics.vectors.windowsruntime.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.DataContractSerialization/4.1.2": { - "sha512": "e700XsW/HO7qlnatKyVXEFHJMNXDkPOkn4pmpddXcJk6KEsnYIpJUHDFycHKB3mRVsgRtUYiDRbRKhecwo2ezg==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.3/System.Private.DataContractSerialization.dll", - "ref/netstandard/_._", - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", - "system.private.datacontractserialization.4.1.2.nupkg.sha512", - "system.private.datacontractserialization.nuspec" - ] - }, - "System.Private.ServiceModel/4.1.1": { - "sha512": "xJyHuGt++ArcsoQkkOUuBxWdPvQa9P/YZ/L1W14gL7xh4XrcDu39Ejp7159qes6JlVvrOFZVoiCRj721hj1hnw==", - "type": "package", - "path": "system.private.servicemodel/4.1.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll", - "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll", - "system.private.servicemodel.4.1.1.nupkg.sha512", - "system.private.servicemodel.nuspec" - ] - }, - "System.Private.Uri/4.3.0": { - "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "type": "package", - "path": "system.private.uri/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "system.private.uri.4.3.0.nupkg.sha512", - "system.private.uri.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Context/4.0.1": { - "sha512": "nU4qA/juVb7OCAqLdWAnxeyTjs5tbwQmtF6ep1gTVSa79aGF1J5orD88WHQmNhgVbgfhSGPnz4+d94o/iBXZ7g==", - "type": "package", - "path": "system.reflection.context/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Context.dll", - "lib/netstandard1.1/System.Reflection.Context.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "ref/netcore50/de/System.Reflection.Context.xml", - "ref/netcore50/es/System.Reflection.Context.xml", - "ref/netcore50/fr/System.Reflection.Context.xml", - "ref/netcore50/it/System.Reflection.Context.xml", - "ref/netcore50/ja/System.Reflection.Context.xml", - "ref/netcore50/ko/System.Reflection.Context.xml", - "ref/netcore50/ru/System.Reflection.Context.xml", - "ref/netcore50/zh-hans/System.Reflection.Context.xml", - "ref/netcore50/zh-hant/System.Reflection.Context.xml", - "ref/netstandard1.1/System.Reflection.Context.dll", - "ref/netstandard1.1/System.Reflection.Context.xml", - "ref/netstandard1.1/de/System.Reflection.Context.xml", - "ref/netstandard1.1/es/System.Reflection.Context.xml", - "ref/netstandard1.1/fr/System.Reflection.Context.xml", - "ref/netstandard1.1/it/System.Reflection.Context.xml", - "ref/netstandard1.1/ja/System.Reflection.Context.xml", - "ref/netstandard1.1/ko/System.Reflection.Context.xml", - "ref/netstandard1.1/ru/System.Reflection.Context.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Context.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Context.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "system.reflection.context.4.0.1.nupkg.sha512", - "system.reflection.context.nuspec" - ] - }, - "System.Reflection.DispatchProxy/4.0.1": { - "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", - "type": "package", - "path": "system.reflection.dispatchproxy/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", - "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", - "system.reflection.dispatchproxy.4.0.1.nupkg.sha512", - "system.reflection.dispatchproxy.nuspec" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.0.1.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.3.0": { - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", - "type": "package", - "path": "system.reflection.metadata/1.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.3.0.nupkg.sha512", - "system.reflection.metadata.nuspec" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==", - "type": "package", - "path": "system.runtime.interopservices.windowsruntime/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios1/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "system.runtime.interopservices.windowsruntime.4.0.1.nupkg.sha512", - "system.runtime.interopservices.windowsruntime.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Runtime.Serialization.Formatters/4.3.0": { - "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", - "type": "package", - "path": "system.runtime.serialization.formatters/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Runtime.Serialization.Formatters.dll", - "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Runtime.Serialization.Formatters.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.formatters.4.3.0.nupkg.sha512", - "system.runtime.serialization.formatters.nuspec" - ] - }, - "System.Runtime.Serialization.Json/4.0.3": { - "sha512": "siAQb9mZmY7dsBtdbC0OE7W1/y4DGgrIRHTghtN40v79wAvHluBm1wzlrCauCWMyp6WVxkcTzoesjZnx5+fM9g==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.0.3.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.3.0": { - "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Primitives.dll", - "lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "sha512": "MDlAdO3DaLsoeGOadY811tONi+sz3qiaLwT0B+Plr6dwFfx2RNM+turm1cz1G1jKy2zZP86x417COdMIRsWZxw==", - "type": "package", - "path": "system.runtime.serialization.xml/4.1.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Xml.dll", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.xml.4.1.2.nupkg.sha512", - "system.runtime.serialization.xml.nuspec" - ] - }, - "System.Runtime.WindowsRuntime/4.3.0": { - "sha512": "xbgfgewneLCfKQfz0VzKsYDacZ680CudYw0uzj0bZ8ATpotkwicgtAsyJZ/J7/Dh2QIwpadjA2zLW/LFk7FKiA==", - "type": "package", - "path": "system.runtime.windowsruntime/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/portable-win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/de/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/es/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/fr/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/it/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ja/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ko/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ru/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/System.Runtime.WindowsRuntime.dll", - "ref/netstandard1.0/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/de/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/es/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/fr/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/it/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ja/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ko/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ru/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/System.Runtime.WindowsRuntime.dll", - "ref/netstandard1.2/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/de/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/es/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/fr/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/it/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ja/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ko/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ru/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/portable-win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll", - "system.runtime.windowsruntime.4.3.0.nupkg.sha512", - "system.runtime.windowsruntime.nuspec" - ] - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "sha512": "ZG2uW8JYmFs1sGlhhAoW/F5WmZotkeSxzMils72qGEsJI6+JcQUa6oleSujULC4nk13F5Us9zvlvD2WfB+9Thw==", - "type": "package", - "path": "system.runtime.windowsruntime.ui.xaml/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/portable-win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/portable-win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "system.runtime.windowsruntime.ui.xaml.4.0.1.nupkg.sha512", - "system.runtime.windowsruntime.ui.xaml.nuspec" - ] - }, - "System.Security.Claims/4.0.1": { - "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", - "type": "package", - "path": "system.security.claims/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/netstandard1.3/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.xml", - "ref/netstandard1.3/de/System.Security.Claims.xml", - "ref/netstandard1.3/es/System.Security.Claims.xml", - "ref/netstandard1.3/fr/System.Security.Claims.xml", - "ref/netstandard1.3/it/System.Security.Claims.xml", - "ref/netstandard1.3/ja/System.Security.Claims.xml", - "ref/netstandard1.3/ko/System.Security.Claims.xml", - "ref/netstandard1.3/ru/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.claims.4.0.1.nupkg.sha512", - "system.security.claims.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Security.Principal/4.0.1": { - "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", - "type": "package", - "path": "system.security.principal/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/netstandard1.0/System.Security.Principal.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/netstandard1.0/System.Security.Principal.dll", - "ref/netstandard1.0/System.Security.Principal.xml", - "ref/netstandard1.0/de/System.Security.Principal.xml", - "ref/netstandard1.0/es/System.Security.Principal.xml", - "ref/netstandard1.0/fr/System.Security.Principal.xml", - "ref/netstandard1.0/it/System.Security.Principal.xml", - "ref/netstandard1.0/ja/System.Security.Principal.xml", - "ref/netstandard1.0/ko/System.Security.Principal.xml", - "ref/netstandard1.0/ru/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.principal.4.0.1.nupkg.sha512", - "system.security.principal.nuspec" - ] - }, - "System.ServiceModel.Duplex/4.0.2": { - "sha512": "AABh0/uzAPK2zsdt7BG1Ay+h3zlEVfxO7T4Ht+Zo8LMOBirEDglT0dyvaMo2Jd6lCVqTjQIyGODdtk3g61UXDg==", - "type": "package", - "path": "system.servicemodel.duplex/4.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/netstandard1.3/System.ServiceModel.Duplex.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netstandard1.1/System.ServiceModel.Duplex.dll", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "system.servicemodel.duplex.4.0.2.nupkg.sha512", - "system.servicemodel.duplex.nuspec" - ] - }, - "System.ServiceModel.Http/4.1.1": { - "sha512": "Af8YqW1+/Plr+ufkvg6B9yw6kv7mOk/wO1aUWMMFJEErigoLCy7Q+mJ5dTjQFPeiLb6VaQsGlCkKD43bBQ7rvw==", - "type": "package", - "path": "system.servicemodel.http/4.1.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Http.dll", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/netstandard1.3/System.ServiceModel.Http.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Http.dll", - "ref/netcore50/System.ServiceModel.Http.dll", - "ref/netstandard1.0/System.ServiceModel.Http.dll", - "ref/netstandard1.1/System.ServiceModel.Http.dll", - "ref/netstandard1.3/System.ServiceModel.Http.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.http.4.1.1.nupkg.sha512", - "system.servicemodel.http.nuspec" - ] - }, - "System.ServiceModel.NetTcp/4.1.1": { - "sha512": "ozGfn/rBUgEuulq5CCEBen3bdLFePCPzg/Rdg+QrsPflr1eYAvFKR4JGSlFO+UVs6BumLsGstO8S1LuoMMr1Dg==", - "type": "package", - "path": "system.servicemodel.nettcp/4.1.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/net46/System.ServiceModel.NetTcp.dll", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "system.servicemodel.nettcp.4.1.1.nupkg.sha512", - "system.servicemodel.nettcp.nuspec" - ] - }, - "System.ServiceModel.Primitives/4.1.1": { - "sha512": "T7KBgQiQaxeTH9mIfKptvJhLKtYFm/riraVWY4OCesjgzgRjDPpFAlHXLv6dO4lNjkQLlgeAVwKKNGBgSrDkog==", - "type": "package", - "path": "system.servicemodel.primitives/4.1.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Primitives.dll", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/netstandard1.3/System.ServiceModel.Primitives.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netstandard1.0/System.ServiceModel.Primitives.dll", - "ref/netstandard1.1/System.ServiceModel.Primitives.dll", - "ref/netstandard1.3/System.ServiceModel.Primitives.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.primitives.4.1.1.nupkg.sha512", - "system.servicemodel.primitives.nuspec" - ] - }, - "System.ServiceModel.Security/4.0.2": { - "sha512": "4oqvU/Upjl4q8bfj9oqI1dHv74nzpltvTcJAmDIxi+8KGlMnMOnzklh/BqonQHb6lAIVxYVmvAQlPo3lXv+P6w==", - "type": "package", - "path": "system.servicemodel.security/4.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/netstandard1.3/System.ServiceModel.Security.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netstandard1.0/System.ServiceModel.Security.dll", - "ref/netstandard1.1/System.ServiceModel.Security.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "system.servicemodel.security.4.0.2.nupkg.sha512", - "system.servicemodel.security.nuspec" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.CodePages/4.0.1": { - "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", - "type": "package", - "path": "system.text.encoding.codepages/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", - "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "system.text.encoding.codepages.4.0.1.nupkg.sha512", - "system.text.encoding.codepages.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.0.1": { - "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", - "type": "package", - "path": "system.threading.overlapped/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", - "system.threading.overlapped.4.0.1.nupkg.sha512", - "system.threading.overlapped.nuspec" - ] - }, - "System.Threading.Overlapped/4.3.0": { - "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "type": "package", - "path": "system.threading.overlapped/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", - "system.threading.overlapped.4.3.0.nupkg.sha512", - "system.threading.overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", - "type": "package", - "path": "system.threading.tasks.dataflow/4.6.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML", - "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML", - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll", - "system.threading.tasks.dataflow.4.6.0.nupkg.sha512", - "system.threading.tasks.dataflow.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "type": "package", - "path": "system.threading.tasks.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "system.threading.tasks.extensions.nuspec" - ] - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", - "type": "package", - "path": "system.threading.tasks.parallel/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.parallel.4.0.1.nupkg.sha512", - "system.threading.tasks.parallel.nuspec" - ] - }, - "System.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "System.Xml.XmlSerializer/4.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/netstandard1.3/System.Xml.XmlSerializer.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XmlSerializer.dll", - "ref/netcore50/System.Xml.XmlSerializer.xml", - "ref/netcore50/de/System.Xml.XmlSerializer.xml", - "ref/netcore50/es/System.Xml.XmlSerializer.xml", - "ref/netcore50/fr/System.Xml.XmlSerializer.xml", - "ref/netcore50/it/System.Xml.XmlSerializer.xml", - "ref/netcore50/ja/System.Xml.XmlSerializer.xml", - "ref/netcore50/ko/System.Xml.XmlSerializer.xml", - "ref/netcore50/ru/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/System.Xml.XmlSerializer.dll", - "ref/netstandard1.0/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/System.Xml.XmlSerializer.dll", - "ref/netstandard1.3/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", - "system.xml.xmlserializer.4.0.11.nupkg.sha512", - "system.xml.xmlserializer.nuspec" - ] - }, "PocketSharp/1.0.0": { "type": "project", "path": "../../PocketSharp/PocketSharp.csproj", @@ -27656,7 +6684,7 @@ "Newtonsoft.Json >= 11.0.2", "PropertyChanged.Fody >= 2.4.0" ], - "UAP,Version=v10.0.15063": [] + "UAP,Version=v10.0.16299": [] }, "packageFolders": { "C:\\Users\\cee\\.nuget\\packages\\": {}, @@ -27685,7 +6713,7 @@ "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "uap10.0.15063": { + "uap10.0.16299": { "projectReferences": { "O:\\PocketSharp\\PocketSharp\\PocketSharp.csproj": { "projectPath": "O:\\PocketSharp\\PocketSharp\\PocketSharp.csproj" @@ -27700,7 +6728,7 @@ "PropertyChanged.Fody": "[2.4.0, )" }, "frameworks": { - "uap10.0.15063": {} + "uap10.0.16299": {} }, "runtimes": { "win10-arm": { diff --git a/PocketSharp.Examples/PocketSharp.WP8/App.xaml b/PocketSharp.Examples/PocketSharp.WP8/App.xaml deleted file mode 100644 index 5cd5040..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/App.xaml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/App.xaml.cs b/PocketSharp.Examples/PocketSharp.WP8/App.xaml.cs deleted file mode 100644 index 57784d2..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/App.xaml.cs +++ /dev/null @@ -1,246 +0,0 @@ -using Microsoft.Phone.Controls; -using Microsoft.Phone.Shell; -using PocketSharp.WP8.Resources; -using PocketSharp.WP8.ViewModels; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Markup; -using System.Windows.Navigation; - -namespace PocketSharp.WP8 -{ - public partial class App : Application - { - private static MainViewModel viewModel = null; - - /// - /// A static ViewModel used by the views to bind against. - /// - /// The MainViewModel object. - public static MainViewModel ViewModel - { - get - { - // Delay creation of the view model until necessary - if (viewModel == null) - viewModel = new MainViewModel(); - - return viewModel; - } - } - - /// - /// Provides easy access to the root frame of the Phone Application. - /// - /// The root frame of the Phone Application. - public static PhoneApplicationFrame RootFrame { get; private set; } - - /// - /// Constructor for the Application object. - /// - public App() - { - // Global handler for uncaught exceptions. - UnhandledException += Application_UnhandledException; - - // Standard XAML initialization - InitializeComponent(); - - // Phone-specific initialization - InitializePhoneApplication(); - - // Language display initialization - InitializeLanguage(); - - // Show graphics profiling information while debugging. - if (Debugger.IsAttached) - { - // Display the current frame rate counters. - Application.Current.Host.Settings.EnableFrameRateCounter = true; - - // Show the areas of the app that are being redrawn in each frame. - //Application.Current.Host.Settings.EnableRedrawRegions = true; - - // Enable non-production analysis visualization mode, - // which shows areas of a page that are handed off GPU with a colored overlay. - //Application.Current.Host.Settings.EnableCacheVisualization = true; - - // Prevent the screen from turning off while under the debugger by disabling - // the application's idle detection. - // Caution:- Use this under debug mode only. Application that disables user idle detection will continue to run - // and consume battery power when the user is not using the phone. - PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled; - } - } - - // Code to execute when the application is launching (eg, from Start) - // This code will not execute when the application is reactivated - private void Application_Launching(object sender, LaunchingEventArgs e) - { - } - - // Code to execute when the application is activated (brought to foreground) - // This code will not execute when the application is first launched - private void Application_Activated(object sender, ActivatedEventArgs e) - { - // Ensure that application state is restored appropriately - if (!App.ViewModel.IsDataLoaded) - { - App.ViewModel.LoadData(); - } - } - - // Code to execute when the application is deactivated (sent to background) - // This code will not execute when the application is closing - private void Application_Deactivated(object sender, DeactivatedEventArgs e) - { - // Ensure that required application state is persisted here. - } - - // Code to execute when the application is closing (eg, user hit Back) - // This code will not execute when the application is deactivated - private void Application_Closing(object sender, ClosingEventArgs e) - { - } - - // Code to execute if a navigation fails - private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e) - { - if (Debugger.IsAttached) - { - // A navigation has failed; break into the debugger - Debugger.Break(); - } - } - - // Code to execute on Unhandled Exceptions - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - if (Debugger.IsAttached) - { - // An unhandled exception has occurred; break into the debugger - Debugger.Break(); - } - } - - #region Phone application initialization - - // Avoid double-initialization - private bool phoneApplicationInitialized = false; - - // Do not add any additional code to this method - private void InitializePhoneApplication() - { - if (phoneApplicationInitialized) - return; - - // Create the frame but don't set it as RootVisual yet; this allows the splash - // screen to remain active until the application is ready to render. - RootFrame = new PhoneApplicationFrame(); - RootFrame.Navigated += CompleteInitializePhoneApplication; - - // Handle navigation failures - RootFrame.NavigationFailed += RootFrame_NavigationFailed; - - // Handle reset requests for clearing the backstack - RootFrame.Navigated += CheckForResetNavigation; - - // Ensure we don't initialize again - phoneApplicationInitialized = true; - } - - // Do not add any additional code to this method - private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e) - { - // Set the root visual to allow the application to render - if (RootVisual != RootFrame) - RootVisual = RootFrame; - - // Remove this handler since it is no longer needed - RootFrame.Navigated -= CompleteInitializePhoneApplication; - } - - private void CheckForResetNavigation(object sender, NavigationEventArgs e) - { - // If the app has received a 'reset' navigation, then we need to check - // on the next navigation to see if the page stack should be reset - if (e.NavigationMode == NavigationMode.Reset) - RootFrame.Navigated += ClearBackStackAfterReset; - } - - private void ClearBackStackAfterReset(object sender, NavigationEventArgs e) - { - // Unregister the event so it doesn't get called again - RootFrame.Navigated -= ClearBackStackAfterReset; - - // Only clear the stack for 'new' (forward) and 'refresh' navigations - if (e.NavigationMode != NavigationMode.New && e.NavigationMode != NavigationMode.Refresh) - return; - - // For UI consistency, clear the entire page stack - while (RootFrame.RemoveBackEntry() != null) - { - ; // do nothing - } - } - - #endregion - - // Initialize the app's font and flow direction as defined in its localized resource strings. - // - // To ensure that the font of your application is aligned with its supported languages and that the - // FlowDirection for each of those languages follows its traditional direction, ResourceLanguage - // and ResourceFlowDirection should be initialized in each resx file to match these values with that - // file's culture. For example: - // - // AppResources.es-ES.resx - // ResourceLanguage's value should be "es-ES" - // ResourceFlowDirection's value should be "LeftToRight" - // - // AppResources.ar-SA.resx - // ResourceLanguage's value should be "ar-SA" - // ResourceFlowDirection's value should be "RightToLeft" - // - // For more info on localizing Windows Phone apps see http://go.microsoft.com/fwlink/?LinkId=262072. - // - private void InitializeLanguage() - { - try - { - // Set the font to match the display language defined by the - // ResourceLanguage resource string for each supported language. - // - // Fall back to the font of the neutral language if the Display - // language of the phone is not supported. - // - // If a compiler error is hit then ResourceLanguage is missing from - // the resource file. - RootFrame.Language = XmlLanguage.GetLanguage(AppResources.ResourceLanguage); - - // Set the FlowDirection of all elements under the root frame based - // on the ResourceFlowDirection resource string for each - // supported language. - // - // If a compiler error is hit then ResourceFlowDirection is missing from - // the resource file. - FlowDirection flow = (FlowDirection)Enum.Parse(typeof(FlowDirection), AppResources.ResourceFlowDirection); - RootFrame.FlowDirection = flow; - } - catch - { - // If an exception is caught here it is most likely due to either - // ResourceLangauge not being correctly set to a supported language - // code or ResourceFlowDirection is set to a value other than LeftToRight - // or RightToLeft. - - if (Debugger.IsAttached) - { - Debugger.Break(); - } - - throw; - } - } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/Assets/AlignmentGrid.png b/PocketSharp.Examples/PocketSharp.WP8/Assets/AlignmentGrid.png deleted file mode 100644 index f7d2e97804e451530960b57429a2b0a26c86f5d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9042 zcmeHLcTiNx)^7yKS)zzL1OX8kGD{w2$Wf9ckt7U?2q-H_aF8r6h)8x2L~>9;21!Z= zK|oOA5G09+z%Ic-3G-d{tLL{C;(J@)dsVNt_~Z1ww@#lvp-=zLxgB-VP>YWGFf{;x zPDfka1OQU#^&p@mhaSHf%RGS|RG!*amjR$Tv_m8y^)3eh)JEq}sFNpMJ-j_GyLx!S zbWkXm=Oqu9a~GTe@EyjQqRmX_*pvxlt4O^_%pE-s6IM!?2{IbP5+@+cL&c~Y$&)$6 zYFy8xp+UygmJvxB6N9NdXyLzfbfq&<^Y5y2?m=iUV^ie6bCFWdQI|RP!x#kSh#3| zM-`y1i;<=jP|^Z%C#bl6X@$T}QwNJWS>_@!`421_%%U3m#WMjR{T?aG#K7kx=rmuw7<-cIzx zb8;fDqvO=}On0Ft0)Pqcpq_0Jc-di$B00u=`~I;-GS@RS8NU#sT}l}cmg`H}jABlR?!_OhW!{-y>bBa-?o=Ex=c<3-nz zLgAf{xP|TEZxGzlb;hpY@t*Wz4dzejl|320I8dh73)KWuk*T#&9&+FrjwErsVaXRm z$(|Cn&Qq^V#vIKLdlAWE%&QkCqb*@_!whDw&AqIA>41F1Y0auQ#Wo;$eKWj9OX5y& zsj>1K+HzE7p4{P3&HFU3&U#Cv#pYOEu| z>%qF|q>xGbd0oyK#u@1ua_3}8HS?@glhM3PGbWi>Yh-aI&g7wSMBX9kUsB~eL)dim zvWxF0yguy8?n*fK@V$2x(`dp`!=zUhy&ZE}?~~q>uKLi@g|mjVMxuo{(>N$N(40OT z50mwCIA2F|wwj5{Nz5nDrZA*O3B%3u3vvp^3TVt%%sb3t z^Us(DmS~zwnNH zs%e4IIB}NwitxD66^8#3EYl?LxO3?072)dSE$-@Q<%0Z7d6bl{ltr1z${iO~im7C; z^}F7NRI@_4Nh?7&##ok)PafyWk=C!2a6au;keHNcS*TrTT&Oi)D_gRVi_NLksJ7Y& zrdMm#6+A7dg^ukyh@CYZG9AsO&Sf)DR#+<$D{#x^%B)uRd44f>F**I&8BDsqNA8$k z?d+E$f$%M}E%z_EYg)9HZ8mKnZM?$X+SghHmxp`mtW!E|ony6#tGO6vEpL@=X>M&>rdfKs&OdE1F9h7vpQ=1FHgm-BPBYix{FW ziUmtBG@Pv}HGA_n_1i?oh|^rgK=+wAWf_c68Q9(Yud?NdN-SYlWCq;l!rl**Kn+?eE; zmEB9Zx{9`n4x>hobi1%|)HOchS)xC&2jpUok)TPVg4Kd;4s5LZU*&loqpE;+{!}`& zpmsB(QjJwD_ImO4nfhWL*S3$hig^gL$z5?>=jg*u2EFfpMd9$yA-XY$Rxm6g%pzPh z#xv6LaF0Zij8D%9>hiey7xhH-u{5-Vk^DnZT^V7O0r-hFiE^7-L_}~5*S0m%c-z=3aGE*5Un18EA zpH6=?O(C5v^$N^gQdyx^BII`5EiYsNk3l>R{Q>>XcWmpgn3$8xE#M%^f3!Lui^UK0C!m$`RiqUkpDi3LgTlISne4Glk`8$b1AVeOL!9-h=Ggs%?4p(?YUD?P1o&VA9< zsiWh|<)^!1_Tt>|-1XP-=;iL4*aU1~kl5!Dd;EP|z^qf(_<078r7A}6iCzt2 z^sHiyV%O>Ar{2q@_?bf%Pc2d(D%iPy@cy8*9sk;>wfb&#YDwj3x5`ET+VTJw!W>t+ zT-WGot>5o##Qwf?dF9dC6@L#xGhuC%8qud} zvpq7nG;-~HolnL}&xjU*JS?PpJ8mtO0d+7oCAK4+E_^=yXBBz*N!3eRbDO!S?z7zj z>FnG0w>wJM+2BFzee(ldJ;^S5 zBRp^w(^p~Fgov)6AFr9d%H4?PjE^UhktVNfI!TG*p?(wQq-|mVfd4T7Fd+bZ zCPL3S0Dch%;DbE?3dsPld)&5b)&zhfP)A+O%y;oZ#Q2 zHRi4L-0xpRK)-YrkUzm_J7fvGegwiP=Y?eH7Y9A?Q@>v@`#q zs}BUU^xvan{G&>}#NB>+5W4T1fQGNVPx#1ZP1_K>z@;j|==^1poj532;bRa{vG?BLDy{BLR4&KXw2B4An_QK~#8N?Ol6x z6IB|YJenpgp>L5=5w&_0L|0MkdKLsT%E2wML1&)iZpva!h?s4%^SNAL+ zvZ%;D6xt#$TSZA`FgWoZ5+_7p9uOFucn^saA}|jK3{Jd<#0e3Y2LuKu=6c9& z#f`~KeK=lgcO#@ zbXJ$vPP!dm)R}G%<-}t@Se~Ta9&f9TEER;anSh8jLdt5b1s;!g=ozp&TUP(4ZDJrh z_ca>w9F*IR1o$f z2Qf@_SsZ-%v%bthJKgCk2fCjQrT4|pIwqCXT2}JwZ3fx}L&$F$lPwO~+h=w*m)2YF z3k1FJleR1y=_Y&~jsAV63*RszkAk>*&{^d#)1fD;0=q*c{<_Jw6zbNs50Kw5a2dZM zLLp?;=RMgF7l!;uy4#0Bem z6vTr)wcUj3l1o(L<1N-_pp3~^wo^|vFmM^aB0?c#>rw4JF8WGmj`Ws|qNK|&6K&HH=L_H-G@+oPGG*O62XIhd}&en2?ScFZKOO(O% zNF^cZ3x>&Q@nh7PU8 zX>92yc74-iU9lEsSVx+z%SSr|aV-zI%OF;Ge8RGiI<7t1Y<(8xJVv|A=sT3|tv4;? zm5^w~klnR|1;HF>C1|&Lkm}{y!K2kjx;#|3fjmpOJanM4Fe`KZ;)Ankd=tX|kOdZe zQlI`=GU^I;4x(*BBuEI)}y1CXHNS|ov1=T;N zYuQ%z{7&_hbfq^c76*|SsAWi#2<747o1 z-S}rX-Xy>u_6N%=5pzz;CAJnP6Jsw_OIPoyJb`gfDf!*<5<0M!6eqM%SQm{DG^XYQ$fh6M|aH?i%AtSSm4$XHq&1 zu8O%gP5hK=8~Gpv+fZ;#Z%q%rX1oqv(AdoT>kXU^Rebgk3@a>=obM*uAQ9~6x&;YA zpVs24^A*YET=bw+HepX8AfQ7uo2G#+l#(E)@&n%V1W(Zv7@AuDux88{qTA7F9Do|kMUWkI&~Ij>#kbcEv(5v3RuOE z00c^g?5- z`{Y~Q^^6=JOo)9@SBbxGx4-nrbmiA63Q5Qv?yP{uK;i7vggX}BnNfYD8Gnoo+{j}H zES=Q#tlOS*>y`sglGB=|j$GRH}P{DPXviX&* z_zFItMIO{cpgGclFS|ZVwtx@7LeMFO6RJO%B7g56$2B=z&nl zA?reC-|w6%-^9tz_hCahBcuqfMY`v@30n}zAJYRvSNifi<%e9^%-MmRvNNXTGjkLR zfR7}JSez`vyh#v76k;)^0E!ZUs6?e)telW2x$M#at_5$OHA}4eJZCTUg=XGY|0tCc@yoJKVTa8w+`cKgN@7_SZN~0E4l{ zUmkKrjo!JBJ&~HJl*HU|He|`w6QvJE>x?01F(h19eKr5;`LQ@$A-l4a(mA}};=pxK z4@bz^bsl1$@MFU@SdI+orr^>~1qG1qUb=;DzSjd-dU%gQwrbWY`Nb3l+o zHp*k)S#4U@)aTgVZ*g_`zi@*%G7UAXNcA%<7ZpM>CrIX@76>=$Q0)WM(Nh=kmp51G zW=u_gGk0dT;su=W1i8kQsTu6$U~jH##k(#0Zk>``GZ^{_1;l^7BZq?w>>=zN9m z11%bZJ9f*rRrSv-KBQY|!riuDdQg1QS?Q2BNc7q0FK10nUbVl`GOyq2y5O&ic4KDv z+n8@i76c)f6eE3SHK{9lp-C!u{<#P7mDZ>!pzox%kSR>mxo0 z=E>aE6^S*SxC*YxIKZ#B8E6*{Ate&@4Uce;&vfE{9&xnO<@OxCU|kfb3~bojG$IFL z-fhSF^TO$Vr1;`h;beIKT`+_&v=n`E0)2V{IlCTq3kEAT{2h^@qY*tus%gycbZ2Pa zrSKtu7{U}Ul7rh5Dmx71p>R3FJLLmcqc81z-)Ubr8vSD`8;gXL)ePoutk5#L6n|g6 z@xIr~`>q{RCy%D`SR`aL_Qjm6P%`zHa~zL=g^?KYXke_VjuRp<#^Qv;2@#kF1O_MG zL*j%8%mV_06Yn8$LImakfx(IQkT@X%^MJtM#CwRq2oYhwJvRvxQ*mO1K#U||;{O3A WvY8ND=rdIS0000U$uDRx#bI$ud=iKLYUia(1-=c3C=&~N+IRZft z>$R)eMi6ue2SGG9nHWGz{^U9qd>!_@YH=Teq=cv+8h?zsF9aPiyr-pg^QM!>1CRSo z9-e~Nw6p|0y*-fkTpc0Ee>B4wWn#R*sk$+-s;M6pmZ@)J0T zsLkh7GH^YNjZ7@bSK+th!dTvG@^gHRXm4$s`X+Tb{K#2Ph@A=NaOVD=5Dl~$s-hwe zYh5Vd{pB}LN&_v&%342V__#pn0K2z8U=yG7J<~!)J4oz4_>N#WR zH63KzX@7SHx+w|SiaeYffWk61(LpqjW#XBWG_T_!!Q+lm+K`hnl;30e>vd@bF zPoYays?I823AbdD^kOtKlj1+$eT_@}guLA$yR^$v%>n3Bvf&rmzEbcI^g8||*ezwx zzx!xmcei|O#Zeo{9}Nr#u)B9>_Gf$YJTF7g)PvBzeFg+qYr8R!vL0&t@U}sAii+vpv_XP?g<{wXgNl zXTxQ!!gc93zc%AnuVYU4ygdB)?$}(M?rtUX!7kqbto7R6Ds!YBWLdlDSs)wCnmJ?B)*|r#B$zSB*#0m-9@tVNMZK zJ$?tv>U+Acg`qIywU=HHWUYNx%H%Uny`2eyv|opd6>IRWHgQWdGMsLrA8TUXwUvLY zdA7A#lU?(OL)d9=ThaVSn&+Q%74wPNN`JY`cd_x7(~|_xqf*U?4@Xr!*|zPNGMmoV zh99QW=wLc-cV;w-=I%3dp;#s^bmZolrmJ+vo}U%`6m{YjOg~=k>II``CW45oe7{t^ z4=Fyqqf;HP+yTix+I>>1dm%Br^p@%umU6ACTm_!TI&YbK9Ufdri{pHq-s@e)qxwSr z&3td36WeH9HWO74%0rq)hq%_$ki`9SIx22%6(V%!c+6B z5<)}A;*LwR2SsVMDx5tQttBf`^~a%WC4ZXqAM4lYcQ+DRka(Yd@hXo{!lzLOmr_Q> zLvBr-&(%Gzwv%M^ULx`#@)+ae{LF2pEvsKtaoabefHukgJY_!1|mDnXgv3g z35Q(VZOwu=6-Gt3p5`9E=#!?{6~TE;A5-u)X@JLx%W30Y(f0?{9OFs+1}VK}{hbTC z-&4NRuKKaCJ~3bEjm z@t=<*=_Q>@;uVuNd5?XEoxn09D2PszxcAn^A%!{!xbe*U!(Wo~5ZH{HBx7D<)O+RJ zr&v_3hl%>1p%#153>GcdTMV`Sy!E=oW~R1HklFqe&R^n;3v1pJpK!U>b0u9P!MVo4P z7i@A$vU%Rsyjyv?q&oRRa!$s(x+^snJK;w)+Vw>4i0Go?y6H3KjYo{fbB^S2-cVIq zE0n^zV0houX!|v|=PadW)?0^VUiZkE2&kLiJ{=;xXR_zEowKIPV$OhLImE>4X zDCgy&!YAEMT)CxX)pA)2W0z!?GW9sVs!t_*P$x!*?Zv&eJ2Piz+}hmQvd=M`J9AF| z#*Z6IX+}4y-if|bzOH<|y$j#gj9#b?5Q%cJ{>ul$9J1A^nRK52_;jdiL~xlOX?vXSCbc{ zQRY4DJ;U&sisPN4t@kpF(+6}>T&Sx15tOLs(fW@%rBc+S(s|p)JLR9}v;LOH+ zYIl71y`zygL%$F8GTP1AJ#PtR5s7>nY4$`t)-%eSr|&|FoL}FV*8NHCZS7?3iFDKj zL&YLVJvlKotdz6Ls6zF{YV|fLqy>J^Jj48&tNv+4DX~I%ch~yKT{7kAbjCFEOb}P9 zbcdB^z?<&o)yN#q_fp3sl#(xBk21KF_)~*jESK|z@UP>3!m&pJn)#YhFzG(|zNlfX zJ7W9>zpjei2z`I_9Gl4FT0ruhoG$*L;VU5I!Y|A&_* z_RNih3e*qO9MZQl-!Zau|D*f!N@@Ni#!oJ|Kl14SH8w{H6UsHvRBg~W_FG8-8}8Y7Uc49%r2Cd=)%pJec= zos51~c!J24a`NHu`7!@l-lra)8_;8kW$*J^s~mce{m6y63CT>$qsiEmxs;>stRtgk ztdpi?K`w+BW$|&E%64` zu3uanBwE&P?5TaKCn9JNHwKY|jyubrRk&_r|nqYwX8P8tMv{2m;x~O6iphq$JbZ>Ow(Le&~SI>)# zq>PYIsjV?v;@gU#dHe23XEu-JYW4?H{Z|g2&nwp|ci;K-;lZy`;_Pv=4`yjaN;Ymk z9{f<*PZ%(4uX$CIR#Il0GuB{fCGX?5?th20#j9*3TDnOysC_d5%@IHf~32T6qPzSO=qDZf$@ z8r*_0dp{aUr;3Pe&29YkpZwt$tXEBU$W4A@etgT>lWd0Hf(0L*KXBSASu^g<*-1E+ zkZ?dpn@ZWWhf5NH-W0UIYIFmF0)-(cECPbI4#4*U1o_B7&<|S(Qc8s&E{~TsA9Wyz zckPx&v`}oMu<&qjYUulQ+YVMdCoPCYl)X%jh^lBI>ymYCvxxA zmw+>x^zR>W@|?s})tEf0rZ+llEEnDMo;4a*z%IDR%~Mbka4o__vt#tg&0@{FljEfP zx{-{XQuzJQy%xffW7RTzW1`MaO+fUe-yB}?einQyV|l9!KJOq37HlhmO$1x8r)&ah4JV0Wm=}(7i#*9V`>=2nlGAprce7OM>Cy4J zlf<-FukvBj3i_giT$L~x=3cf+$GPvR*QGw$i@tr2TN-_H` z9JZ91p1!kwgQ-+HHp);U@OvaCF-26JI^%Pq)YisSe0=_8rk#K1?D<&>`D^K%`wS zBaJGqQw+0fqCHkWM)9#a(9Z7Lyedun?pvd7h8SctGyj&1S1G~o;1Zzr3lV3Sa1y+x zhK_T6C!5`s;Wp`LHaCa841@WnJTYw^g{8wG=q(02PH^157O8HPM1?D@k#F9-QU9?~ z%@rEFwk0Q_q^hjEGd?pjV`JH~JwHExu=4ZgPc06wk7CQ&%AjjEIyzcJe#)cvp0DqE z{L0Eo1Mz(pO}otH9*JUmx%4g%my0}XDMq0sS?V3PJ&8Oi$|_1q+Y4*14+8@Omw~P5 z!AFbDpLFblgLj8Q_w7(Und3HkTmIU?NLN?aEW=}h_(QG{)rA|?k54k{4MMUFXTSJYNwyn4jo9aMJ9~3MR^b5@$Ciau~p} z!XC=Qer#BMs3Cy5msL}-sI+@EXCUCfnK@*$MPT0+S$|Jeyc?g*On5V1{1I1z-s)0Q z1!q{iw{CT8ds|LFh{({gR&=MR@cS5NFj?j#LLu7 zS&RbrS;BFBEkV^_^NSN7o9+WAd1#MuxokEOjy&v%Clxh>cAW`I8X5k$3$al5^y&7a z;cDc)ofZ2$eC_^VQRrHajtV8BD1wnKR0UR_M_7~RiFsHuD$AQ1snl zXq03cCd9sGJhaD~fU){evDjCSKVdS+sGQNA0Md(VQ)Ek=pkN{yz2y85E+JEtcmLl+|IR@db9bq2-zS<&dKP6XRM?2nLCq4EvzqTpYb-8z_50S06WqU!mJ+8N zDHIA}ZAFhBi45nv0g#licA}MYqaSQV#P_p+>cxwzIL4!=H#4I)lhyLO@l+SOCWO+L za7pZX=yu>0Y@~o~;*E5g;)KI@Q+f{5fMXPlQal5wHoQ}>W_-UM(6=Teq>{K-W%PM|V{zm@(!t@IFqYZ%(hF^|XNDeY}-^>^9U7xU0tyKD7MZ}y9%F=MAWimZbza7KES zgU%rX6Lmp7uIuT3EVPd;*pZbE%9unrhnIik75+TZ_J*G5hWgqU<1E$S&7WI{AwMha z;7|OEBM*?)RZsR5hRD7i9r$!Og;AEGY-YaBhQ(IfJy$bZ7i77VGIyxra|Fjqi@3_e z8wi9zR2183r3blIgtY@eO9Zm705?DXzPi3d5voEx*^Q8zmDNx<;yPi17$m`_5ivUU zt}!$e4M+NlXJ`xVRSjDb66x_g%7*yWB}ZSh!3Ht7H{X+WfUghP$&|p1v2%!!o9crZ zyx(-2X}7X{@d>$)KomvCOeRjvqPKD^SF1{CHB#l+!(?iR}lz; z+lu^2euh_Q3tRCBO0agYsjx43e^BQT6&j|5@}f6>(mR|0OXCFt3o5xsYWjnFLvS_H_|Y5yLzWkeNw$7{YE)Z|mqNBzLsqWG z3D>lwaEOqrf29FsWI(Q%dZNhIr4)l97N?SzDcHJ%C&kuVt-LCDT`u<<84>ch42 zVNE~e+)ktg@Yyy8vOyTOuL3K)d7+}w3^px{-YSz}&es8SkleVF6t$@!*2KBhc>9qA z@M^wD@5Ct%wp_aO#cuqnBJEIU@UN4sEWuZ;D5ayU!wxR)(&npZ6FF{AKq+fPzqnr#?qd1C9$qD@mE`dh@m`!!Q6Mu)0CN3 zfPa6Y0Z5pJJV0M*=;bcFkXWm)IOaNPPDE(B8^1d(+#?F=!wiSGS7n0scelg=qf^$6 zKG(o0K_-!%mxlKPL}weQTk-}@I}AilD*gU7?OiYJ7ozma=f8vs!HeReq_GSv@~SwQ z@2E1g&G!dNMWPs$LY~Dx1a~Tdix4Rlr>U3v^^+%0_8ov`!eA2BOq1f{gfoo=|8nfU7B!r*va;?OAg%NCT(cXh{a29;S!l~n zLHazWPAU3;{iY-vsb%xHCLGT(%-VO~E1_PGj{Uuz9)9)ET~;5fN$cz3C0F!BF@+>H zer4Z9vTp3@d+(WwkGV0(e2-|9bz?~R@j%HV7yIKlI^gQyaI4^si4|elRX%;A$SdGV z1PxH<<_SpLRt=Z5bujRyKDOx`{fMrVb?s(_9fKX-lJ&s;puSbGqTd=q-a|BaHB$Ie! z+Hzzm=_W5(=|zQON`+i?yvxiK{A9BO4_V`UAo{sY4% zVhnT>6(t_Vtkm5N0`Wgc_C2r{ot?m+Hsjbn;nYsuh@NPrp@D&t6b*@2EBFd6t-#r# zvazcB^GBD)Yc>dQiVwC8DT>*h0M~t@3M3CAgb%fE!~Y^zM*zDd010q)CB@n}=|&rX z()R#|zQqh29#eEb>?GiV4F#SUb#RNCkLSBQeey&tCypB6Se1Q#eDM^W%?2K~M=Smb zbM<=7=W&rI>xXZRfFkHCeg<{Ma@D^L4`*XN_*!C`=d(6EJbciBUq+m%AU2OTPbjIW z?U(-pjSs02_*x*~ooU;j#$d8gjpWXsf0C|d_g%8k z+u|4mq4Dc7IxQ^?WI7ulr;JvY1iwB(!G!Qik%?+8f#92@=$_}dkLeNst9W!DnD z1sk-@@vn&U1!CF-OB2zBmtgsTMx%>BKB5TQzbQ8?sv!?wUV5NJ!P2CnBQ*r*IDJkg z8d;kY)@t&w)pB>tk~_s4)vWcZat0R0FprZe5DBdo5jPS7$Qt;O^?)k?#x zF?U@nP(&t>qsmei5XlIczqzn$Y;3IZC@bsuZNwnpLY~3wI2zwi@{iPvEB=9=gc))n=fS0&n zcdz?coKR{|148*FNLGs00_vVI(;Dqedylns&fG!+7ud&;6(F~u50}795WI!Uzxrz_Ff5IOpg~Z!)3*sNi)D+HwwrlcVsH<@TXK_7< zCjDv+P4O8dHAN5i!Q-8!ZJG1)sB2?KYNT2Xc#kpbb=|TAp-rl9pqPC(oJ*@~-5%!lPLo2>S&tMXxqf(=yRwCQm^+k_^EBPqV zXcRpnhQVuV11$!7yS8YLNi;?u-NS)bU>^1aG%Cnk1S=V)?ZaH`qnPsYrT0}%2XlRZnnlSw-S)hKg1rXX`TWh zpOi=gI3?VOu%>PtIsRtEbu@*lh=;!#BZ_WCj-P>(^#SG>bVX-Ba(I~w``$(ct#vsH0VMO)YAjWO`vGK84tYtUTlYR*!y>tC0ue5 zo$)t|>tpL(sQMcJY7)z;^n?ZoNXZ$O?^YgXVbU&|65v@c11qZeSXu5V9}P zML%Y?>kF|Vd9w%PnZwU5iHCra+IgUqLCSur@110XgiTipP3rEuIzz6f%-~^w>ngrG zGx%6#ea2_!JthE7{q~bOGfu zMYu;dUMMf00&=XsRWe1_ii)=c0uOi z+JtunId%ya8yaw?F|<6<+eUPD-!yNnmnu%&9WpS9EgW8LAm0^2S4|On4Q|}HamQy6 zQG_LJv!b`Q@w*j~IqrBoqry(t-yD!$A7k`6j^JYjBHyIIsZ#-EhNLkrj`_tVGAmAh zF~tQo{SJ_L5)v2C@K`ld%Ri1#$UujMxIQgXaCk0+OA;_~YK=kRF1?yj!7 zs>EOZS$GpFF#1Cz5ZW2J< zL|IRiY)wc<`xV%sj{`7Y0VT^Pb!?#UnNm536g&XzY~AqLbrG}lW0p0^NY9E;=`fd) z72@jT^c_g15`F?P1C6diNp@0&&h_j*f0TBuyPZy;aN!_G`Jt4A$dO^2XHh9EK;HHR zTBoBQ-qs6n$R>8v-+LSN;eO=Du`8^5`mYY5WzrO*9dDo^BOAX;3VJzi7Im)+oab#d zcsLEqqTnA@_LD)PjbO4ko&3Lr(4-^Mo=-YR0#>gK&$6CXwK3M) zO2Dg>#x_vi<7<`RL1|Y2aW3uyNwBM_UF*@;qJW%>P~L=pJ!t)%cq)(J8d{eFNZ46+XGZ|LW^si14Uq<3XRj!$CZ@kt?HURhCV`;s_K{!BTYAkz-}cF*DQ^iJS`}1Xbk=S9smf z-nG!aQ-X&PkaPB(wL=Dn7&6foVY3nYFA1+Csd9du7|2@6O!Sw4O;qFAn)&ZYbsPfs zDqq-j!e_xApsI6fYN}_$i#JOWBjFQrTap3Fi+KZT`r&LY&x#)j7b@V8%At0P{hU^ZDHlr|MjZ{9cU(w%Iye+jlfh;$<@j^NaJIO3#SNv(PsoYYcg z0pR3SAj>58K8Ut>gA5>84Q4ICVQ7Z%NhzhxH%O-e*~jZHTLe{dJw3`7I1BRLgVAT? zBqQqtbe2_%x9`!fmyj~xzlU-_eh-1j0fD#%QQrdm{($ZLPvd`gP#gc%@qds0mzn=H z`k!W~BmXs;YU*FM|2g_!9sk*+|Jmq&PWu00iJlgl4{0Hi{;S@CVBJ5#n>Og$6$9-; IP1{HR1(GMkF8}}l diff --git a/PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/FlipCycleTileMedium.png b/PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/FlipCycleTileMedium.png deleted file mode 100644 index e93b89d600641c9d5b05f94493a9fde6afa850e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9070 zcmcI~cT^K^x9%VaNRuW-2w*^oNDoDNOK3_@1O!A{KoIF&dT$~k(jkBdgeHb!D1vmP zi*yJgAWgamQsj=`@2q?7Ip13Mtoz5EwPs~y_Pp@5I-Xk?NeSHTPPZtjd7gruF zH8mbrcNff~$94eVJDp=>k1|?gQ8*<2RJ{`u^74+0;T1|AL)G{Y=Hwd!*Dld($6U*w zx?=E=0f{8z=)uO2K6@6DaK%87CXQ;7V(D7Jv+%;0xKAew0fkQEO^4qH{?tw=u9WZR z;D;z$DQRA5!VM%tXi8PN7`}#gcXTZ*2`h(E@wo!@lz7`~9%sBHz)_IA{4HoJ#Rq`I zca)kEXw}JT73GXRzr3!RVNMbfLDK4(eESY%2s5DU|4j7_psY?3l9PVJ2*8p75BqGa z7Xf`C;30qT_fa4u=O`n91TcGf?FtDt8Q@{Ei$MSmazOdey*MObA__2L?sUiilR|)~ zmN7;Xcv}y&4$@P<11M<#QG=Msn*dn=@UVxM*B6M$0GQSHjOBN4Rno5rfRW00Cr{v$ zL57-93b|1j8w+#62DMmkF-uupu*y^xZu84v7Y~)V{B^${0IyR2Lb zVArON_g(+S2AThyFg3Njv^1&Rp=xIJ$vE(jeVb*g@!8|wLGq`E2VXyY;|mqH2-P4v z`r6k2^KKF6(2GkE*0bM}G*0WO&rczv&<-tYf{6h0q5-4ZGel;>zIYKdR`tcr&g-Ag zZNJS6o{%ceO9F2l6-fe;g-R@JNPpeor#JCz{dNcddyOt1zrZL-Lma{vhJ4PqmCiJ< z*MSg>)(bZPc!1y&Mt#C7byETW0vjsuR)yo|M>fG$a?XzzXFpP(K9q`3NDeK_0LZXdDjF>vm`XH@}~4o+d93Yka;P{bE_wEDQBsD3BJU! zbZyU!D#u#c?e&q-H<;lkM{V|H`elh_a=UbK6?9>y;ao{Ria|2zzG_8&one(hbP1D$ zSEkHBIE&VuqKbml(W?%u4u_AbRy`XS=2E$I(}s;d_pNEHrmd3x^r4}Rx)RmKl_3Y&1(%ZWiaf zX+}1ho`lk=bZhgQ^J~~A4PMMyF`6=(E2b)D(NT~+s1(LI6>;P@B79n&6mO;Hes~a) zd)K9y=-0e*%o!+hhB|XTEWS)?6CQP$FY+xqcR6bzF=KR-FrK&cT4x*m~PcIJ&C+8V_IZ_zHfn7ugIym zKHgZ-Sj<12>BW|IY_GS@^8B&61g_Evc}SrvaNy5}t_ zF3L+2#fhet{nD-VJ@tKh?Jl{Nk@IT7yyv#({^uh=amaNNd(zlYl~A(_CrAEIueCf= zlAW>p^=@iYB>_uNxuTL3RuQ)RvErIT&yVL7*A7?G2a^XM(M9S9t&R^Mo9t&5${K2-Lk;N>f!i<8luaxh` z=-z(0qe3rG!jf=(kICoyGb+C}NSi%WWJGEtW>U>ufJ=8zQ$WZ6#gF7BNk6_$c#+^T zA%eg3dDC6myK`Bxxh$F9JkH_@vdv=QFOr|Tsp78bq}183+keM+_m$g4zWdYpB)(pR zE0vEb!IQ9A-(`+ymrpGj zvoC8(%Q^_QLzvH)weLisTr;{?xU}zSbWdofrfX>D@6~J`{6fx%qz%Ak8pG?<2!$>3 z@0;w3dj|*Plu)lxKT*dhsjbg*wN?{HPe!&l0-AnF{1}@tYdSnr?ENr6`KIK4wsu;q zHe@?=BbW70!JocLRu++hgeP3 z5o=nqd{#9SWkq4n#gS*C)&qVNzrE@M>g!L=nocOPel`)8w|+GS)X&eY*xVrP-3;_O zJe%9zI0*`FnV&<$nSjoiE&>;r0ZRS9U;e8Vy!HRV z`uEoVocX_x{WmLk>wo(FpRM2$|6|SnJivb)3tD&1BVO`wp^GR-**G~LTUJ|l4x7*A zWz?3gQ>NzC=`x4XF&{ix`&?uxj`#9lrYer>!Qh_BJi<;=kA#jJ1_uY%6&BhkBdBox zZ*Yp1?K|dH7$uhEFF0 zS6^G({2KT1DEN>V45bWfsrm+Mcz~$8dwN)1U2XJv&6C?Hj3JkfIX0!&wt+v&-mloB zEF;IFi2gPjv6cJ7UPwrY+g2z9KpM(r-+Hq;Z3Nv@R?IsOPw%s|!d#BioMBcv-zO3u z2#=AH#C1fjn4!G}44%9zsI9I2mZGhoprDJ8DqH8)_2NKV)Ov4DdzI7DV@r@dUfVPE zE(VD#!JVGc`eS&+(w$Vn)8mb*7A?dZ+HM|7NAa%1gM-?a+C@IQ0*+6z5pia%WO)d2 z`~!GEGwwkJZl>)0Y)!_dkY$5J1uU-eQv1$ehHwi?z=DzNV?D-qKP-l`5O;z*Iwjg- zvQSTFS5$t>EfaM zpcvo%f+hJfs%#^nprpIsyKMatrY^>qfh6wxW-jZqlMQq{t4L7YRTqK;UMXvNQM1Uf z^u&WOyIwf=#MSj}b5W69S&U%i@?r*VL;m+tijUmN6IdP@6Iy3q0IEFF^qDD4&|BIO za|eA;KoxZGzOJtBq*&I8I6AucO317ZiO?;7sIlt}m#e&Lu@b>8vUI(Jtvin`nDN6F z#bYYsNt(c#`oNDu7Byz1Wx6#XFOe{ttKFcxeWv&9-6Tof+4nzc6xtNB=!tuer2UcQ z$vp%;FqnN^=Vqm-hK_zkRu2MPkwZymLW?5qd`9;+6YI%s>lbqLSqqy%@D%t#q-s9C zsAzdgK)%unt)Pa^ClkbBpQ|Bb z_tNtW@4_+vjn_C~`ef(dPybAM%AV<`wiz`Y8l&MF1LA6@?ba$>K#ytD^%A6f0n6-GL+%7G_cA@Y?rm>{-X&K|M+4FaC z-IZ&~YsxAVRI>W?*oW=*8e|ukp;aF!n!sc;33tKUwpWcpMkXgGv+O-`guh>&2<;O3 z%4trq-n@M)c<)%4VM;thp0u<2@TnbZ-nu@Z|x`M z<3e%XUyeiZo1>vp7vTX-vtqgY(E7TX8u^Xp^E_CbRK}D)+{|1BR&O|k`!S0NggCgk zxR?mCOsE@p;xjfMynXmlnV#%0MzbDQxkpsewY#K`a=I>a_?0hbTWtAq&!ja*Bx@?g zfcbzqz7yUz&nht|E<=7l#|vI)AeT49?S$dpB?g~ldknHuw!0R4Y>h(q#$&gO^BxC= zGvqRS*rSsWf>PK;bqftVZow(CAV+v3RTmZ>OEvnun3)xX=3!{Nej(9kOMC~;@dYJ! z&?2a@ee}WW3}IJaUtha`fRk3vrb?3lF*k^VxN3tw*P=+~!e&}b&oK|>xVXz| zGrv!CIq4J$s>b8-9(Qk3TMB7-JA&B=r)l>ZBv2!kHdW|R?%%f82$Xump;9^&0#HWe zNbMjjMWr)-@GQ)iBzZ@ZdcF*Ju6U&)r!LpXc4 z>wIZ`q=bJ7Tvxs{{OQ4tNKB6#s@bY>>I~O#A5Bf>AnwYdXj*3w7DZ%Nk}_VnbfJcQ z6HAuZ7jPbkYo#2bv}{avDvde4=gWa9lzo7<%x<4xx>8K)jC)J8$LJZxcG+M8zKhGN zgh*{fb+OH-%V~_?B8kha5+#10c&=UaxxPg8g3nVECh61T3d6zoHhTmVz zj<&%BO@eWRHnP@QFZW&;uE!#D4cdLiVAe2$ayS1k@{DOz=X54?n@5caPQ{^TnSrbFt+87t90r|1davvWdo6aSz(3pt*g2r;-5$pw*EpTe)Hz+&-|;;%bi`9gU{u?BeCXsGz7@Da#A zOVSM~5Ga5(#0xxxZl8gv0FhGon+lR$57dRz%;u)2{Rub_b#9`r7$xk4Q0g2+%m%%Es9psy)~evQ>NY& z?Zbd2bFe1$1mP_3_ug_^Tu&N1FRy z32m?@H(t`~PhraO$b;iq2g>VF0)ZthElPJxakpNR?OvgZOlcSW;XUXT-{X{H(-P5; z@f?L{2;*5@UtK+Vk)dEBkSaCrIjVDh4Vp_O);4r&`%EL-;~a7Qxu{QU&lni$pa&OK zc7_a?Eo?AITxi65=k_RC?l&}^*aJ~$Y)@GlKWGlYajBv8llld>o6q&xq7Ku}bq!XP zH`D}Dk4JiXde$(%)NrA)G()U$o!@5YqWLL@8&U=^hl+=@9xHJ@#--%zFnMkW7ndS$ zj_!GaBR$ru;%_-ZD{&%6B%$J}NYSK^kBBE`(obf67uq7JE#E-Ly8muN`A>4mRFSIo zprdCvE3xxTAU{kiJ%iPOS%yD!zK}Dl$AM*3_M+bf|;6i0+h7@dUY>K&sz(R4O ztpFMS%X#+wt_3)EqJ^TP%SLN!D|QU#fm zEM?gC{$_Sb3jF|?%8t&nc=5K01InRYUA~8}&zlzu9-ojoSdhWG<&v@V3hw4Fo%4W- z=;X709!jo*V1_nQ)bqYZLDoi)#6f>w}jGTXw&(BC8|UEdrejCOZ*jr(pZxnRyvo z1uYtWex(Uc`o@6mr5xTRr=XZg6Exi`R-re)4s|JxD-peIDT>z_BiU0pp4jF z>fv2=4GqgQ?V<*Btr>b=87Y=XN<0x7Bn;phZeai;oeL6EB(e(^=a!pWW@UV?r*=k6 zs8=2SDN~`BFTq6$2&J@jb!fdlrdotR_bgEtQX=Mztk{Ug6+2`Q2VQS%cZMl9f4XR| z6R$w3wta0)&5z1&;x`2$4mPW6Yi^idl5I>zKT5(yX|~1jQed1x!mPrKoRD4la2M$& z0dB!Co+BCvj6^#`yupS`!>=w--B;a5^iw!pjj5czx=;TE3HEi#0O-g-?_ZAO3*}m2AW2w- zzzXHoonP9|@GCPhU=y}Vx(#xj^B8hRAP--HY~%}_r-MTYsDqo|go2P+|(3=?^)|X1vwlgy`gLhhsWoZ|Q8!+3UYe!{#I6!Kk$c-GS)6?plScw!BfN~2iYZ)^^R z#@QY#`jJtSTHXd1!N?!U*kT^RXS(@iuIFVS3FcerzkdA+^?UDf4}drr$)@Z)PKUUH zB>2LcOBa|uIs=9#CrnK8{sO!Q8+NE45XR(a#F7YN$(Ml;|KeV!0x2o!9mJ9XC<65VNUN68RJ6Nga3nvx^xolB=p*P} zLWaVR=J`6OiAwIAfGt9in^G}p#S3)Vz2#4G#nA}F-|Yv!9AU#TFQ|JRPB^{OKOj1z zXl2j+20fOx;#8_-5%YGJHgoDQ+v75LD7|xCXiH0y@&`K*wrpFPa~B4J1>(szC{V~O zL@*7~weRF$e(9nWHXW#q#;!x%-^BdD){wz))i2uKI>ogL#`PFs>V)D7HbG%QDR)i0 z`S9Y(?Jy&!oSYmR=$^^%AuodY6EE4E52BP|KABT;D6c8LjW_Xt4tX7xubgkCD`{KA ze|tNoVD+={13$YAk0;LbWYR-7a)=$ZM+Ck*sgGA7HJ{?nk9ewH;Agsuc^ zi*Ryso|^ogbR2jKVh}AiR&v&NJidoz{Ndwmqp^xhfwXUbu`L)}8{E4<1{3HoJz8gb zO-2S=RbEU8Yrn){afm-w39%;1f!O5<9*HsXInP(lzJ-!f;C|~0%IaTW)|m)mp>mTO zRs%`RVzyaYuk8cIWF0MEBJrd#P1wR;A6>Ic80bF|k9IKOV}R3hDuBUCw5yJ3)bdS-?KaTDJrA_I zWc>sC?71xbL<6l5M809k)bwX6WKEf&-P2-q99%V%J!9^&=*^P#Kr!x7IGE09iRaM@ z0l&=cFm6M8N)jnM^0SFJ$Ksf$ZkahWbNmokK>m#_W&X1`TQ~=5%;}b2d_hJt8sTkx zIOCU z5M9A`6nXs0AqBCtsKSkGSl-Y)yieC{<{3opNqR4BIL}eo;U7!PzHe7o*H&fMe&%H2 zs}_4Iodg@K8+G~*8>|_^)=5b5*+9T~Ixbf_JnI7t8vGhZfq6P>^$$gtLoVsSeV-|L z4CdV5TrpOZI#xlSxrR+Bafm`-0<~7{QJ250;|0+Nx$KWy+oA4jkK2q8ww-ZT)S&LA zF`Vfi7bnf*S3o=tdcFigC=B8N+1TD5^7izkDRIQ$W)KEnAW;j=VzMRs{f`@Q=K7Tbp|SSui}0x9ABZqzT3jaFW)Cu)r~%IdA7H|8NpAf&$r*XJp1OR zY##sL*3Ck4%Lb(G^}gH1$Br*_$}ftx!Q1%#?mkrsI+xqD>|fcpN8{mwc_@Evgf5p) z%L&@67Uy2d0Je9q7rg<&hwo|YK=otZaxeM2^q!+;k`hOO#|4m;0d*OeJ-v4I(H);C9OGfZdCshB3I{uGb{-4wQ sSL=UQ*8lI;f79Lnf2;B#RA<|OacpD3^v2Qv_=5(Zh15kk9D<7Zn*G2P*L3EOn^I9x9*iUMFESWkk)vvL$ZPPbJp6ko0aqMsZ=swdLAPPH~wZKc1JP z5{S=HxsK{x={QASjYo_JuHr}UeLD~avIzbkB3sWPARqwNsPF3P`sLHy7Hn*w_kdg& zFlDx;^NxAEtE)@3&wuT3V}z9a;b5_X9v~Wdt0!ff%QiIcjA^jZmk;zK)-9WaCDLKB zyrN>z4mYZyrBeJfJ2!XHh;~2Rym$b5O)d(kKSsuikf4^?`uqC&e5fLt)fi&29y|qC z0R|cuHvWl#sh!i;j1Zg{D%ip@&&kP&|KPO1FvQK-xs;Ei0Mh~hCTz&)RKnj{vkm(D zYJ8Wd4OzZ+0R%XeC}|&1UH%hOcX(3%;hbAQ0KG=sx$$^@*Vk5Xv&B7g=AOn|UTCL*z*Hxf8gZ;WDR>g}&!FzmS zX3-dBP3DrzIBV$^$;8tfO(o|pEJzR`WwPz)?d?rGIAxwe9Bis=ek*FKeA_(nnRuKf z1e~?BNaiA5M8`AmTSv;2Fl&jDsItp;xwEbCvGPpbjO5Wsd}6ak?8!MR{va# zU82dr6kFI$j!}sxQu6cz1lj8Q&q@8Jjkeqt{?UU81H z&#V%jPw^k&yt^vd5v&cfJrk=3-SzxpOsr%V=nA7bIzF5((^H35{1UWP=h%g1=Flu0 zMj5L3&Yy5is>Waar1bIe*`Ii)xDPh&)4&9g0SGWZKihI8=e~q}m(w8@X&F?@R4HYl zoO(MkR!C9Al1S%*+BDR#NX8xja?_()>s$0vGG6!tKY~iW>s_SE2kxS2G)xeFZI;_o zxnKfO8xp&C=I0*&0TNNiQ9GPe34yN?KX3|^GhV&tFK#A6QEd+8_NeUIR5#%_UX>1G z=R+g(mG&rKtYOfgRT|TVP6n^JX#vlM80UH~+FWWh;U&#CwVrCXbXtOAj*q%*bth>x z6xC`BpG#&;Q~mi6B^wZ&y5V z*d0wSw%m4z2;yea%XZEA%UctxeYn4tM!NwF&Z;`-+KtV+lSk^x5Hfy6U(oRC$$SKV zF#mTbc2YSIuOEa!OhP;Kmpc8c6B)^``DxBsm&jdSBvBU`toDy#X@k4PLEEmJ!MUoo zV`=Za=K~O4NN&iwNOK&>szIu=rl#gdhMW=X2tV^K68hfkK2=DG0=q!ZzHDgu6H8&}>q|{b;#HGsq9;xI)hM;Yxi_o$pTZQ2d)e`x#)W&NtB1KC z?E<_lCrKxX5G#_kFf)Vu$up;o=~*X8wPj>wU67|p=Db4jTH#2;fwrN|MU=xqZ~}qc zG9R-LzCQN)%;>Aw?KMWD)_9j~gDJ3`$N6>q{lyp^N6xKZ5MHD{3>7f$UuM$A*%L|? zcYce;^y^HCx7pKakFU8Z%f3{Ew;$TyroK@>0S`~ZJGZz#t%5M1T~WHF%CrK z9%sK8u^7Rw_b00J@$+|R>X^asIo+({09;bn{h<`k`B=B6jmpjbaEG2P58?YZe^oG& z)?VjZtZwRc)J>vXv#!_U(o6FfsPI>f0@+2W!de;H*9NeW!Egt%GSQuTl~?)q33IZs zImaJkx#hm_F%>P0LB+)K`+MHmp%s7JLYfpDg+JBCi852PYaTK>%s>)pn+#I*VPE8Rw6ZYE05x)i* zfC>9m-Xz^>Bj0vPL&VsTaKe$I&M!8#s}a2NkN;E6B?~bJ$&MGS5=3PMnw# zHb20iGdmfp9o^o5?^;*|k8LIX%G&?Ev!j~!1TV)9ubvbU5!u)n$r>^BeTUOZMze?~ z$63*XqiJq-MXiC2jbhVcJ!!?9p`D$2WwuHtIBOFOY32`?E;PL5sfl6QZ_ zO?UcmYS|U63c-K-a^~)PLM82W^j#qFjNoZ#I3c#w5*I}1hX`s6y^Lx9@lsm1l{)>%8j)&vk`>g*8&9=2 zs{rT_G58)G=b;Hc-9@J>bFPz4UINl%K{ZyS*U&iRr=rWtG3$g6%9LCXH6!VEtNSAj03nb1UO2}CQ3^S-lK+>m&tEb z7~9V#G9H=b*}wWAnqat!tO$=Rw?>gLNhz9AGT%!r4`yD?m1orz_MKa2jSN6#c|cdV zuYzHJH~R&KgIM+;N=WsZ-(}&$+D&J5pO}?=1T%y(NFp%Z4O96xExx-iEhGG_Rgi>u z*^ZdKK}A9v9WtD0W97}n+vr0^DOtr~uoO@uoRw+Q_H2($JU@6?f)b&J_Wz-x417OV zV;4@h(FH@=J)pU~pI5ao-uAP!u62i&-=K^7al$T(8bi+s?T*atn%g!oR1C$2@1t$Z zt*0o4Q8gyO+2x=k?yQ{=h|d4T(X}k2pfJx&&XkSCdJbzMANFs$h!PR&m@Vid-{(!) zG)(MbfBVcPGUUeeqOS@bM)(PKpP6Zuz35_2Gm>g%?U%ICBlprKa2H0uHV-hlCDga6 z*X;R(g5sCK*C^dV;ZkLuZa-gibKaTE?Yo}mrH78gFE)NrQ5_gId(!>hvuj1*9MS)D zeq+BXt^S;2Fid9DW(Or@;C|r5ret)z2vSz1#76MB6bYNEA!@a#e_Uj!{hp)6uDl6( z^RjOyOIAUrkPK+{)UD+8Gw}Iy%rho@OZh_<;EyeK;155fPvq~QX=$I+4CZN)k=DAB<#3DW4 z$27Z$EP2G0X0D&vjJKs~Vfd}jO@(l=OyT()%?9UEf?zbsO2n)4-zHpWUL?j7LPJR# z|7s8WS6 zpgFjc>z?G_&18U9JGOQrVSkSX{6>Ah}<>J zy#RoO=3m1BvfqIKfLPxN3Vrg#(aqb<%hAo9T?-0jclUI2aB{H+0RM$tL!^=6F1`Hu z%880LDm-1=&47-O-9RNFoEFV1$U#I2Lva+$)4{u_)YR~p2lG+5$;sh~bZ{Zkc;Y#N zO^(9k$Rbqy(A8Q{k@HO3`S$2d03>4xMVnKg$gUx_sD_X{Wk~)Bp6cB-f6Mv&`NqxGIL2KG0M@)iCvJqm z^-SS%_~EWMg*=CNj!#MQea;gc>L`>Nf&ASC(_{C4xlt=fZJwXs+T5Ij^{QARhD<|l zkloKZO|M=4ghKwFpMLLH=Z+Awj?lon_})EoqEqr<{54V3^QG++jlWGKw|`ltID568 zH=7C4ZosKMl2x-4kHtzj<5XS?^zlsI+O4k&UEwOMN&>Yn6mWvjkIJoWanH2*D9yY( z*UtgqsMW3O8$Tg#xMSqnxZmwB#cPdx9w6L7>$L{}JXPfuHX5o|93TV$)%*y-T4m;w zE|5?s{)4XjOI;*?ZKR@9xO=-*C{>82qmv^VQL=fh6@wY_~;VBOi(jYh%P&m)y&A5^Y8M2};IJz|Ps1vx^zo2O0oZ4tf zO;Lk*BX(m=mLqx3dorMdxwK|t))-cF0g=uhAOi7T7ZKt99+i)eg^1E@hd**wkz)FpYE7ze zTjNe`$3ObvQAenC5=r6tsjwqhl{L+D%=G3o%h?}rOHeHkNfY5l!Mpi5)5^6Qcw4Cc z^n#v?iN=~~3USR)r_g{YgHX_3X>RH`s2E>!>OHNG#YU6Vlj@T%4Y+oNDsm(=nYhxv zEZ8~M5y+$qu|FJ)-pt+X*%aSo-sCv4B+h-VRoJrfgi4 zZLnNkU_>REVxdx9fHn94k1eN>@X3}LjilGoE~zejGsWb{;CSxz;fHq%)$$uwy^OD> zlf%0jKQeycp7@cH#n43#ppg8GIUoWMlF<+JAycQ6aVmjvz(_<|bU$+^iz3U-*h~;B z7)*yAB7OsV!~2F=5NuRYSz5VLNn(6#JZzLw@zgM+M%`H4aHE3g+gprrW$u%GLuNx{ zgSjNU=E7{5lTbyho=;A6g90|M+a9t)HF5ma*Pnh{Kr-6XO#h*~|NJbUxTu zur>3Vr8PmmvZ6o+Dh?Ajtv5JMcTgnQ$n>~)=dDMy!(Wzh92&nu`%7S5fVoscr&-kA z%DM7w##=LtCI*ht*l(ArIVj65ZC7hGzltDN9)R&#@o6Aa#_s3t7|t6mml2oI>&nZX z)(BTRmoOK!s``C?S$3G2*YPwwPsgonC7^xh@<9mr+UVN#vg}lY)C|9#lpBAMbPNRP zlk{+duz&{^f5V~HJxb6L#2ZA$S`@l@0#Y=so}^BZ=+tku!M)+y@7iC)i_go!tF61I zdzfvY+gvJ8DyJi-GcY?EysSc*Q(pJC^bLC zw!MtDkTEYYGq$jauGkO+ z@;L*tsjsHzFs(f;q$MQjTAqL`cAgx=V!;yX)!<1hYa+XnJ@)QUF{JP0?JgK;HcmM{ zC%%ED85Zbu$~DZH(m*mGo4q2BQ3-L{uZD#)6ohk_`7`SAkr&hE9TEeq&u4in}+p!-1449uR_DPZtZRZZzq7Va2^~a zZd`PrL2c`Eo{U2pY!E*XUo+BDRo@C;HZkBE&CwM|?0yPJ<5@gjo(iGGU zeEk#MCKu&m9CNzOr-w=Fpu1~GHZ~llFt5W*I$bx@Xkf07}Z|d-QG;T=dEhg{b=)p++ z&|<3eyI=2b52(AT*Ir{wVzf;kv6yYQSG|y_gLnii5^vDme;8weUj_LTj}>&C*2f%} zX4HhX^9JfVM?CEsdezm41+Z>YfZHrtImOgijtuRO}LB!63(v7JHwl5BpVfo#>J;o$U4Z4sO? z%D>neiG?;7eTIB$voHHHHY%rRRBUu&bZI1YIJw-2n7w#8amXChb|&$2deO4&{955l z$D%QgvF^0PwEdOVRsFeQOuNn$kAnf+N!)7!E^_Q_^S5c1NqHlKl$nS7 z8sr0P9XGkZ{2q}>kr^kw>tE+`R}I+QJttZ{XC;$e@J$S=S|gZZ^JPJ@fM2L&A7!iO z7-nBtKDTVqA5oZ?*;@(xtFg#N@lFC_9soNw`r@>(`)Vo;c{HAw`zALeRQS)5&0--o zXvcPJ^#z67uNF%0wMn(xgdMpyxiPDwPu@p$i(53NpG>nq$Ubx3^WKBpq)q7$w7zT2 zu4%S%ZaxfbZwzuc-(}8|9$P+X5BN=gJ2RapBfs2!9O!o5cYeA`zZ~kxcRe=TI`7AK zSly=I_UuIIKzSaz96POOd9yV4YboqSr(gc@#FEB2estvc4f-^N0(w6sD`hx_EM`CN zv4V`ux}xXx?%y)#xZOB!9>Y!H&2S9^Jvj7YdVh9oB6Ff3<0vETvukk4^?(~hE$tQ$H}m+ft@xwG zyML42R?|Qi00MacAUqNP{@mWhT>$VA0f0Rl0FccD00y_$&-&B>fY4h@RoTdY;b-o? z$2yEsJ&2#6)1lLWol_*)rjbf0`TN4116BzWxd08D2N8pvb^znZweo(pJx>8zf<0-h zqR?tfBk0?41shkAT~*^f_aT4*=mw&22yrR#*-4c^;UWOyzrugX|Dn@B>U>bv=sTC+ zUeI_(Gwy3iYZ%1t^wptIs?7gWYq!|~_$gEExu>05Tx_dAJo-Avi7aS}G>8kbERTT9 zxfBv(3m;fg__qXgYkKldRe*F8Mju!b<#l||S_w~T6NhXqcgYZ_00&OMHXfceVEpk}YM@XuE&iKK`&pATzU%aF{KM>VPt^vO0*i)Sq znYlQODp3?%AEY<2VRukS8b(`$j30%(H7>;KE^j(}A{+Rl*aTq?H4}i&@^@ux1|W1` zdfg))2ZiaQh2kxE6gBYmC?eu=aN@`h_!31R8@sl-9^R+q!S>J@@Kw2p- zi=pS%?{Dk8;Y!Dg7FSSJ>?6={+x>fLAijwrvNS4!_3@dK*9xZFTu~7smpqByx=M@c zm!7xQR>d7prP?)TypujoLYSR7uyp7~R9oEO0;nD->r8~;=cJ+fQ}9fKufwfcL_v?Z z7LC$5<(gS&ycrt;)gvm0)$X6}R>v0%o>wP>)G`YAF8{bzFYo^lD z30?*D_e6x42o+0dR3q6cy#89+j+|rtc=nS&s97b*4t#zQD54PcTV3VTV>Vsp6ErM_ zv(C0gc&Mq=xuKschTMJB%9<2B40M<%Xz^wABzy=VibQ#Iq1JlJe@j}l2L%qc1(f`j zn)d7cXHunWi?d!I5iH`i>}&`|!yGN;=1K!oK(gP-ympe3#`m?Qli}<`0{q7v`oDKm z5MxsDZ8V<0Jk=IyQ8t2{;0r~^!z59X9VRFngGg5x!dId{vlZ4?wvv~TO8v?f%xP;o zf;ISE5q1&97P(QONn5gLYyb;0Kw(5Q1?06jN(_huO2Pzs1)irGT&Ag15=W*}`xAS> zc#6|+ic?`!cQBN=;vuO4EMK75K#-#(>b=SfwLADppxC7M30!qDd4O42YEd?2+1J%H z)^o1;M*Ffow^rLlb<#YLn{CbKAqm}= z?JAK5vLv-lw%zmN+Cbw3)Zk}NfAueC6o?B(@`Sp!(aeh+&WynDgA?qsnbddeF3zZ)>IN-s_ekQ|m9| zQ&>qa7O3gtjBcOQujUy3n<46~Sy;p2CmJ*|m_ca#j<+`Zqk8T2mVQwN6GbS7&qVFB z(V2x7cWg)%Rp>$R!@y?_US7KxjD=qtA*RUMzNCkX836>v!^r;n=pB}}X#3`z95L{W_R3W3m z4*j#R2&>%HtJFL%JsiG)Z}IIp%8T*EH^|CDOhUdHY%%+suuX1bGvLPXZ`3gz*0J7` zPYd5kv;WcNS@_6((Ls}F{WQQ>`uRVws>3HvHSeO8iFY+%9Y_IB0L!jVVJ9k%IhAenPOTu!>$pNg=miPEB3j(6U;3H#YMe?N|s6+PZ&aZ@-GNVMD@m0Jn^DgNfCqfdMN zG@0!(3Uq&&L}IvnEQk8T-O|Cq1I60i7hS=3d)x7{tv_FvtjP70N>q~zr`8d zEA~>8$C$0RZsG%6pRZ}`xAY2@oQb|~P?;oBkbQA0QQ@6cHx4pFJ^f1L` z&5%`)G#Q&!@b-?gj1`rY@jS~kK?BOFm@lcuu-Eej<|9Pbfv$8yyxVT6j$hMNo#_z1 zz!Of_&30(m$Z=$mmWdl{a-~-niaj`YGMW=>Owveu6FNz^9T(5}@+fRs0^;6tV$G8c zk#=o$1=sC*MLA7>#=NGrGXeRbn8HI3}&^jxut z$SlQQRk8Rksz~1B|AdWkNKQ_`(B*Bdp;6+IRh_VUUg_9BuLygySO>EQ8)Di8oGI2& z8~(Z*B{)Ig8fS*DdI+7In)}HwG6Yx;v5()ykJj}${s@sp+ZKsMx&vA3)t6(EtDd diff --git a/PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/IconicTileSmall.png b/PocketSharp.Examples/PocketSharp.WP8/Assets/Tiles/IconicTileSmall.png deleted file mode 100644 index d4b5ede1b567fd4b90505217330edf7de0474432..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3724 zcmV;74s-E|P)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000BGNklcGs2rrn{^Ht~JnsYRQN zFSTdpxYj0CpI4Q2asQu$a~f=-X>;IfWd?xE%m;%t?zzwVOtrzJ4d2hWU5mEj~Q~@v+HyR zMc2a^P@}9KcllfSC&bI{;rqwCf>|DS)x+Z}pG4yT#3B24CNE zKV<61%y!J=VwwORVU6=dL`A1_j=Es(IhfoQ%)dmdPtV~v_1_iFm*;St`cJM`XOABu zBqFEr4oph|07*kg_p!E;H)PK_5tY{U7!F&h)~%R%@2O>U5y?iT33-k%H8(~pBFX`* z0t2&B)ky6Zz2UN27P<-m>quFNfVtEVKupS|rU0@) z-KojF=0vokT4dS=x~{5L99~ZmEUM%+1%PJ&n?S*A06bSiJGF%J1%UT}z$}UA!z#~F z4MSOcuA0Dzltz;(F*f(hAerGCeKkt zt*uH~mFrgJEunk{;6;IYbnO8ACZdg1o>L3$k6Q35aeN%5Y-?b8kYItwt^_W04Rl*G z36AySN7tyW$gZ=T3}Gm9ax0blgpw&IZ7-Bi!0u#puP9)5GLAb6*qw~-Ws~RBVZD0_ zFbA-#f2PZGB53+o#kJCVxsx)t^_@zrrw%PG)-Tn|c=Sc-~8srYYg3Z|V`zlgIf@f#bf^ z=9bawe^mDDI(LPmn+R6`MqRC*q2I^PduhIMB7r@ewBh^U&$5tHP+B^fTC@rC{2WVw zVV=C?m{9iq%&x%?@mT|iO~*VC(T - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/DetailsPage.xaml.cs b/PocketSharp.Examples/PocketSharp.WP8/DetailsPage.xaml.cs deleted file mode 100644 index 6547da7..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/DetailsPage.xaml.cs +++ /dev/null @@ -1,55 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Navigation; -using Microsoft.Phone.Controls; -using Microsoft.Phone.Shell; -using PocketSharp.WP8.Resources; - -namespace PocketSharp.WP8 -{ - public partial class DetailsPage : PhoneApplicationPage - { - // Constructor - public DetailsPage() - { - InitializeComponent(); - - // Sample code to localize the ApplicationBar - //BuildLocalizedApplicationBar(); - } - - // When page is navigated to set data context to selected item in list - protected override void OnNavigatedTo(NavigationEventArgs e) - { - if (DataContext == null) - { - string selectedIndex = ""; - if (NavigationContext.QueryString.TryGetValue("selectedItem", out selectedIndex)) - { - int index = int.Parse(selectedIndex); - DataContext = App.ViewModel.Items[index]; - } - } - } - - // Sample code for building a localized ApplicationBar - //private void BuildLocalizedApplicationBar() - //{ - // // Set the page's ApplicationBar to a new instance of ApplicationBar. - // ApplicationBar = new ApplicationBar(); - - // // Create a new button and set the text value to the localized string from AppResources. - // ApplicationBarIconButton appBarButton = new ApplicationBarIconButton(new Uri("/Assets/AppBar/appbar.add.rest.png", UriKind.Relative)); - // appBarButton.Text = AppResources.AppBarButtonText; - // ApplicationBar.Buttons.Add(appBarButton); - - // // Create a new menu item with the localized string from AppResources. - // ApplicationBarMenuItem appBarMenuItem = new ApplicationBarMenuItem(AppResources.AppBarMenuItemText); - // ApplicationBar.MenuItems.Add(appBarMenuItem); - //} - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/LocalizedStrings.cs b/PocketSharp.Examples/PocketSharp.WP8/LocalizedStrings.cs deleted file mode 100644 index 8fa12be..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/LocalizedStrings.cs +++ /dev/null @@ -1,14 +0,0 @@ -using PocketSharp.WP8.Resources; - -namespace PocketSharp.WP8 -{ - /// - /// Provides access to string resources. - /// - public class LocalizedStrings - { - private static AppResources _localizedResources = new AppResources(); - - public AppResources LocalizedResources { get { return _localizedResources; } } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml b/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml deleted file mode 100644 index 413e6f6..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml.cs b/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml.cs deleted file mode 100644 index f040153..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/MainPage.xaml.cs +++ /dev/null @@ -1,46 +0,0 @@ -using Microsoft.Phone.Controls; -using PocketSharp.WP8.ViewModels; -using System; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Navigation; - -namespace PocketSharp.WP8 -{ - public partial class MainPage : PhoneApplicationPage - { - // Constructor - public MainPage() - { - InitializeComponent(); - - // Set the data context of the LongListSelector control to the sample data - DataContext = App.ViewModel; - } - - // Load data for the ViewModel Items - protected override void OnNavigatedTo(NavigationEventArgs e) - { - - } - - // Handle selection changed on LongListSelector - private void MainLongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - // If selected item is null (no selection) do nothing - if (MainLongListSelector.SelectedItem == null) - return; - - // Navigate to the new page - NavigationService.Navigate(new Uri("/DetailsPage.xaml?selectedItem=" + (MainLongListSelector.SelectedItem as ItemViewModel).ID, UriKind.Relative)); - - // Reset selected item to null (no selection) - MainLongListSelector.SelectedItem = null; - } - - private async void Button_Click(object sender, RoutedEventArgs e) - { - await App.ViewModel.LoadData(); - } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/PocketSharp.WP8.csproj b/PocketSharp.Examples/PocketSharp.WP8/PocketSharp.WP8.csproj deleted file mode 100644 index 0aa360b..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/PocketSharp.WP8.csproj +++ /dev/null @@ -1,217 +0,0 @@ - - - - Debug - AnyCPU - 10.0.20506 - 2.0 - {47721A56-2128-4C5A-8B92-995FFC353304} - {C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} - Library - Properties - PocketSharp.WP8 - PocketSharp.WP8 - WindowsPhone - v8.0 - $(TargetFrameworkVersion) - true - - - true - true - PocketSharp.WP8_$(Configuration)_$(Platform).xap - Properties\AppManifest.xml - PocketSharp.WP8.App - true - 11.0 - true - ..\..\ - true - - - true - full - false - Bin\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - true - full - false - Bin\x86\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\x86\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - true - full - false - Bin\ARM\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\ARM\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - - App.xaml - - - - DetailsPage.xaml - - - MainPage.xaml - - - - True - True - AppResources.resx - - - - - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - Designer - MSBuild:Compile - - - MSBuild:Compile - Designer - - - - - - - - Designer - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - PublicResXFileCodeGenerator - AppResources.Designer.cs - - - - - {817200C3-A327-4E35-9B5F-63A51C088577} - PocketSharp - - - - - ..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\wp8\Microsoft.Threading.Tasks.dll - - - ..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\wp8\Microsoft.Threading.Tasks.Extensions.dll - - - ..\..\packages\Microsoft.Bcl.Async.1.0.16\lib\wp8\Microsoft.Threading.Tasks.Extensions.Phone.dll - - - False - ..\..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.dll - - - ..\..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.Extensions.dll - - - False - ..\..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.Primitives.dll - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/Properties/AppManifest.xml b/PocketSharp.Examples/PocketSharp.WP8/Properties/AppManifest.xml deleted file mode 100644 index 6712a11..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/PocketSharp.Examples/PocketSharp.WP8/Properties/AssemblyInfo.cs b/PocketSharp.Examples/PocketSharp.WP8/Properties/AssemblyInfo.cs deleted file mode 100644 index 6a65418..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Resources; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("PocketSharp.WP8")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PocketSharp.WP8")] -[assembly: AssemblyCopyright("Copyright © 2013")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("d4c30306-fbff-4433-8299-ecb70af9cfb6")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: NeutralResourcesLanguageAttribute("en-US")] diff --git a/PocketSharp.Examples/PocketSharp.WP8/Properties/WMAppManifest.xml b/PocketSharp.Examples/PocketSharp.WP8/Properties/WMAppManifest.xml deleted file mode 100644 index 466033d..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/Properties/WMAppManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - Assets\ApplicationIcon.png - - - - - - - - - - - - - - Assets\Tiles\FlipCycleTileSmall.png - 0 - Assets\Tiles\FlipCycleTileMedium.png - PocketSharp.WP8 - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.Designer.cs b/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.Designer.cs deleted file mode 100644 index f13dc10..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.Designer.cs +++ /dev/null @@ -1,138 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.17626 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace PocketSharp.WP8.Resources -{ - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - public class AppResources - { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal AppResources() - { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Resources.ResourceManager ResourceManager - { - get - { - if (object.ReferenceEquals(resourceMan, null)) - { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PocketSharp.WP8.Resources.AppResources", typeof(AppResources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture - { - get - { - return resourceCulture; - } - set - { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to LeftToRight. - /// - public static string ResourceFlowDirection - { - get - { - return ResourceManager.GetString("ResourceFlowDirection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to us-EN. - /// - public static string ResourceLanguage - { - get - { - return ResourceManager.GetString("ResourceLanguage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MY APPLICATION. - /// - public static string ApplicationTitle - { - get - { - return ResourceManager.GetString("ApplicationTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sample Runtime Property Value. - /// - public static string SampleProperty - { - get - { - return ResourceManager.GetString("SampleProperty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to button text. - /// - public static string AppBarButtonText - { - get - { - return ResourceManager.GetString("AppBarButtonText", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to menu item. - /// - public static string AppBarMenuItemText - { - get - { - return ResourceManager.GetString("AppBarMenuItemText", resourceCulture); - } - } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.resx b/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.resx deleted file mode 100644 index e9e87c6..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/Resources/AppResources.resx +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - LeftToRight - Controls the FlowDirection for all elements in the RootFrame. Set to the traditional direction of this resource file's language - - - en-US - Controls the Language and ensures that the font for all elements in the RootFrame aligns with the app's language. Set to the language code of this resource file's language. - - - MY APPLICATION - - - Sample Runtime Property Value - - - add - - - Menu Item - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/SampleData/MainViewModelSampleData.xaml b/PocketSharp.Examples/PocketSharp.WP8/SampleData/MainViewModelSampleData.xaml deleted file mode 100644 index 7975612..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/SampleData/MainViewModelSampleData.xaml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/ItemViewModel.cs b/PocketSharp.Examples/PocketSharp.WP8/ViewModels/ItemViewModel.cs deleted file mode 100644 index df0b93a..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/ItemViewModel.cs +++ /dev/null @@ -1,109 +0,0 @@ -using System; -using System.ComponentModel; -using System.Diagnostics; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; - -namespace PocketSharp.WP8.ViewModels -{ - public class ItemViewModel : INotifyPropertyChanged - { - private string _id; - /// - /// Sample ViewModel property; this property is used to identify the object. - /// - /// - public string ID - { - get - { - return _id; - } - set - { - if (value != _id) - { - _id = value; - NotifyPropertyChanged("ID"); - } - } - } - - private string _lineOne; - /// - /// Sample ViewModel property; this property is used in the view to display its value using a Binding. - /// - /// - public string LineOne - { - get - { - return _lineOne; - } - set - { - if (value != _lineOne) - { - _lineOne = value; - NotifyPropertyChanged("LineOne"); - } - } - } - - private string _lineTwo; - /// - /// Sample ViewModel property; this property is used in the view to display its value using a Binding. - /// - /// - public string LineTwo - { - get - { - return _lineTwo; - } - set - { - if (value != _lineTwo) - { - _lineTwo = value; - NotifyPropertyChanged("LineTwo"); - } - } - } - - private string _lineThree; - /// - /// Sample ViewModel property; this property is used in the view to display its value using a Binding. - /// - /// - public string LineThree - { - get - { - return _lineThree; - } - set - { - if (value != _lineThree) - { - _lineThree = value; - NotifyPropertyChanged("LineThree"); - } - } - } - - public event PropertyChangedEventHandler PropertyChanged; - private void NotifyPropertyChanged(String propertyName) - { - PropertyChangedEventHandler handler = PropertyChanged; - if (null != handler) - { - handler(this, new PropertyChangedEventArgs(propertyName)); - } - } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs b/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs deleted file mode 100644 index c02b580..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/ViewModels/MainViewModel.cs +++ /dev/null @@ -1,108 +0,0 @@ -using PocketSharp.WP8.Resources; -using System; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.ComponentModel; -using System.Diagnostics; -using System.Threading.Tasks; -using System.Linq; - -namespace PocketSharp.WP8.ViewModels -{ - public class MainViewModel : INotifyPropertyChanged - { - public MainViewModel() - { - this.Items = new ObservableCollection(); - } - - /// - /// A collection for ItemViewModel objects. - /// - public ObservableCollection Items { get; private set; } - - private string _sampleProperty = "Sample Runtime Property Value"; - /// - /// Sample ViewModel property; this property is used in the view to display its value using a Binding - /// - /// - public string SampleProperty - { - get - { - return _sampleProperty; - } - set - { - if (value != _sampleProperty) - { - _sampleProperty = value; - NotifyPropertyChanged("SampleProperty"); - } - } - } - - /// - /// Sample property that returns a localized string - /// - public string LocalizedSampleProperty - { - get - { - return AppResources.SampleProperty; - } - } - - public bool IsDataLoaded - { - get; - private set; - } - - /// - /// Creates and adds a few ItemViewModel objects into the Items collection. - /// - public async Task LoadData() - { - // !! please don't misuse this account !! - PocketClient client = new PocketClient( - consumerKey: "15396-f6f92101d72c8e270a6c9bb3", - callbackUri: "http://frontendplay.com", - accessCode: "80acf6c5-c198-03c0-b94c-e74402" - ); - - List items = null; - - try - { - items = (await client.Get()).ToList(); - - items.ForEach(item => - { - this.Items.Add(new ItemViewModel() - { - ID = item.ID.ToString(), - LineOne = item.Title, - LineTwo = item.Uri.ToString() - }); - }); - } - catch (PocketException ex) - { - Debug.WriteLine(ex.Message); - } - - this.IsDataLoaded = true; - } - - public event PropertyChangedEventHandler PropertyChanged; - private void NotifyPropertyChanged(String propertyName) - { - PropertyChangedEventHandler handler = PropertyChanged; - if (null != handler) - { - handler(this, new PropertyChangedEventArgs(propertyName)); - } - } - } -} \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/app.config b/PocketSharp.Examples/PocketSharp.WP8/app.config deleted file mode 100644 index 3b9f41c..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/app.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.WP8/packages.config b/PocketSharp.Examples/PocketSharp.WP8/packages.config deleted file mode 100644 index 5646a1a..0000000 --- a/PocketSharp.Examples/PocketSharp.WP8/packages.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/PocketSharp.Examples/PocketSharp.Wpf/App.xaml b/PocketSharp.Examples/PocketSharp.Wpf/App.xaml deleted file mode 100644 index 1e02642..0000000 --- a/PocketSharp.Examples/PocketSharp.Wpf/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/PocketSharp.Examples/PocketSharp.Wpf/App.xaml.cs b/PocketSharp.Examples/PocketSharp.Wpf/App.xaml.cs deleted file mode 100644 index 008b664..0000000 --- a/PocketSharp.Examples/PocketSharp.Wpf/App.xaml.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Windows; - -namespace PocketSharp.Wpf -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } -} diff --git a/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml b/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml deleted file mode 100644 index 4fb7ccb..0000000 --- a/PocketSharp.Examples/PocketSharp.Wpf/MainWindow.xaml +++ /dev/null @@ -1,18 +0,0 @@ - - -