diff --git a/Caching/FileDbCache.WinRT/FileDbCache.WinRT.csproj b/Caching/FileDbCache.UWP/FileDbCache.UWP.csproj similarity index 55% rename from Caching/FileDbCache.WinRT/FileDbCache.WinRT.csproj rename to Caching/FileDbCache.UWP/FileDbCache.UWP.csproj index a1539756..ff503374 100644 --- a/Caching/FileDbCache.WinRT/FileDbCache.WinRT.csproj +++ b/Caching/FileDbCache.UWP/FileDbCache.UWP.csproj @@ -1,37 +1,69 @@  - + - 12.0 Debug AnyCPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8} + {3FF37D40-F770-45B2-95DD-7A84093E1425} Library Properties MapControl.Caching - FileDbCache.WinRT + FileDbCache.UWP en-US + UAP + 10.0.10240.0 + 10.0.10240.0 + 14 512 - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile32 - v4.6 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot + AnyCPU true full false - bin\Debug\ - DEBUG;TRACE + ..\bin\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP prompt 4 + true + AnyCPU none true - bin\Release\ - TRACE + ..\bin\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP prompt 4 + true + + + + + MapControl.snk + + + + + + + + + + + ..\FileDb\FileDbPcl.dll + + + + + {951bc5d2-d653-42d9-9a91-21dc50de0182} + MapControl.UWP + + + + 14.0 true @@ -39,31 +71,7 @@ ..\..\MapControl.snk - - - - - - - - - - - MapControl.snk - - - - - {63cefdf7-5170-43b6-86f8-5c4a383a1615} - MapControl.WinRT - - - - - ..\FileDb\FileDbPcl.dll - - - + - \ No newline at end of file diff --git a/Caching/ImageFileCache.WPF/Properties/AssemblyInfo.cs b/Caching/ImageFileCache.WPF/Properties/AssemblyInfo.cs deleted file mode 100644 index 73ce5b1f..00000000 --- a/Caching/ImageFileCache.WPF/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("XAML Map Control ImageFileCache (WPF)")] -[assembly: AssemblyDescription("ObjectCache implementation based on local image files")] -[assembly: AssemblyProduct("XAML Map Control")] -[assembly: AssemblyCompany("Clemens Fischer")] -[assembly: AssemblyCopyright("© 2017 Clemens Fischer")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] diff --git a/Caching/ImageFileCache.WinRT/ImageFileCache.WinRT.csproj b/Caching/ImageFileCache.WinRT/ImageFileCache.WinRT.csproj deleted file mode 100644 index 148d5184..00000000 --- a/Caching/ImageFileCache.WinRT/ImageFileCache.WinRT.csproj +++ /dev/null @@ -1,66 +0,0 @@ - - - - - 12.0 - Debug - AnyCPU - {F789647E-96F7-43E3-A895-FA3FE8D01260} - Library - Properties - MapControl.Caching - ImageFileCache.WinRT - en-US - 512 - {BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Windows - 8.1 - - - true - full - false - bin\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_APP - prompt - 4 - - - none - true - bin\Release\ - TRACE;NETFX_CORE;WINDOWS_APP - prompt - 4 - - - true - - - ..\..\MapControl.snk - - - - - MapControl.snk - - - - - - - - - {63cefdf7-5170-43b6-86f8-5c4a383a1615} - MapControl.WinRT - - - - - \ No newline at end of file diff --git a/Caching/ImageFileCache.WinRT/ImageFileCache.cs b/Caching/ImageFileCache.WinRT/ImageFileCache.cs deleted file mode 100644 index 51040ec7..00000000 --- a/Caching/ImageFileCache.WinRT/ImageFileCache.cs +++ /dev/null @@ -1,93 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Diagnostics; -using System.Threading.Tasks; -using Windows.Storage; -using Windows.Storage.Streams; - -namespace MapControl.Caching -{ - public class ImageFileCache : IImageCache - { - private readonly string name; - private StorageFolder rootFolder; - - public ImageFileCache(string name = null, StorageFolder folder = null) - { - if (string.IsNullOrEmpty(name)) - { - name = TileImageLoader.DefaultCacheName; - } - - if (folder == null) - { - folder = TileImageLoader.DefaultCacheFolder; - } - - this.name = name; - - folder.CreateFolderAsync(name, CreationCollisionOption.OpenIfExists).Completed = (o, s) => - { - rootFolder = o.GetResults(); - Debug.WriteLine("Created ImageFileCache in " + rootFolder.Path); - }; - } - - public virtual async Task GetAsync(string key) - { - var item = await rootFolder.TryGetItemAsync(key); - - if (item != null && item.IsOfType(StorageItemTypes.File)) - { - var file = (StorageFile)item; - //Debug.WriteLine("ImageFileCache: Reading " + file.Path); - - try - { - return new ImageCacheItem - { - Buffer = await FileIO.ReadBufferAsync(file), - Expiration = (await file.Properties.GetImagePropertiesAsync()).DateTaken.UtcDateTime - }; - } - catch (Exception ex) - { - Debug.WriteLine("ImageFileCache: Reading {0}: {1}", file.Path, ex.Message); - } - } - - return null; - } - - public virtual async Task SetAsync(string key, IBuffer buffer, DateTime expiration) - { - try - { - var names = key.Split('\\'); - var folder = rootFolder; - - for (int i = 0; i < names.Length - 1; i++) - { - folder = await folder.CreateFolderAsync(names[i], CreationCollisionOption.OpenIfExists); - } - - var file = await folder.CreateFileAsync(names[names.Length - 1], CreationCollisionOption.ReplaceExisting); - //Debug.WriteLine("ImageFileCache: Writing {0}, Expires {1}", file.Path, expiration.ToLocalTime()); - - await FileIO.WriteBufferAsync(file, buffer); - - // Store expiration date in ImageProperties.DateTaken - var properties = await file.Properties.GetImagePropertiesAsync(); - properties.DateTaken = expiration; - await properties.SavePropertiesAsync(); - } - catch (Exception ex) - { - Debug.WriteLine("ImageFileCache: Writing {0}\\{1}: {2}", rootFolder.Path, key, ex.Message); - } - } - } -} diff --git a/Caching/ImageFileCache.WinRT/Properties/AssemblyInfo.cs b/Caching/ImageFileCache.WinRT/Properties/AssemblyInfo.cs deleted file mode 100644 index 11cc5c93..00000000 --- a/Caching/ImageFileCache.WinRT/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("XAML Map Control ImageFileCache (WinRT)")] -[assembly: AssemblyDescription("IImageCache implementation based on local image files")] -[assembly: AssemblyProduct("XAML Map Control")] -[assembly: AssemblyCompany("Clemens Fischer")] -[assembly: AssemblyCopyright("© 2017 Clemens Fischer")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] diff --git a/MapControl.sln b/MapControl.sln index 49a24d8c..b711a639 100644 --- a/MapControl.sln +++ b/MapControl.sln @@ -1,33 +1,25 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +VisualStudioVersion = 14.0.25123.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileDbCache.WinRT", "Caching\FileDbCache.WinRT\FileDbCache.WinRT.csproj", "{C7BF2B18-CC74-430B-BCB2-600304EFA3D8}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MapControl", "MapControl", "{52AECE49-F314-4F76-98F2-FA800F07824B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileDbCache.WPF", "Caching\FileDbCache.WPF\FileDbCache.WPF.csproj", "{EF44F661-B98A-4676-927F-85D138F82300}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapControl.WPF", "MapControl\WPF\MapControl.WPF.csproj", "{A204A102-C745-4D65-AEC8-7B96FAEDEF2D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageFileCache.WinRT", "Caching\ImageFileCache.WinRT\ImageFileCache.WinRT.csproj", "{F789647E-96F7-43E3-A895-FA3FE8D01260}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapControl.UWP", "MapControl\UWP\MapControl.UWP.csproj", "{951BC5D2-D653-42D9-9A91-21DC50DE0182}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageFileCache.WPF", "Caching\ImageFileCache.WPF\ImageFileCache.WPF.csproj", "{86470440-FEE2-4120-AF5A-3762FB9C536F}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Caching", "Caching", "{6A596588-F93F-47CC-BE5D-58C3B34ADDEB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapControl.Silverlight", "MapControl\MapControl.Silverlight.csproj", "{EB133B78-DEFF-416A-8F0C-89E54D766576}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SampleApps", "SampleApps", "{8F2103C2-78AF-4810-8FB9-67572F50C8FC}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapControl.WinRT", "MapControl\WinRT\MapControl.WinRT.csproj", "{63CEFDF7-5170-43B6-86F8-5C4A383A1615}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapControl.WPF", "MapControl\MapControl.WPF.csproj", "{226F3575-B683-446D-A2F0-181291DC8787}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApplication", "SampleApps\WpfApplication\WpfApplication.csproj", "{9949326E-9261-4F95-89B1-151F60498951}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SampleApps", "SampleApps", "{100879CC-8910-459E-856E-253D629E45DE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Caching", "Caching", "{AE8A7E02-0F7D-41B0-AB23-15394150ED17}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApplication", "SampleApps\WpfApplication\WpfApplication.csproj", "{F92DA93D-75DB-4308-A5F9-6B4C3908A675}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalApp", "SampleApps\UniversalApp\UniversalApp.csproj", "{AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightApplication", "SampleApps\SilverlightApplication\SilverlightApplication.csproj", "{85AACDB7-959D-406D-A8DF-2F1E013F8F40}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileDbCache.WPF", "Caching\FileDbCache.WPF\FileDbCache.WPF.csproj", "{AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightApplication.Web", "SampleApps\SilverlightApplication.Web\SilverlightApplication.Web.csproj", "{7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileDbCache.UWP", "Caching\FileDbCache.UWP\FileDbCache.UWP.csproj", "{3FF37D40-F770-45B2-95DD-7A84093E1425}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -41,135 +33,57 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|ARM.ActiveCfg = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|ARM.Build.0 = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|x64.ActiveCfg = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|x64.Build.0 = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|x86.ActiveCfg = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Debug|x86.Build.0 = Debug|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|Any CPU.Build.0 = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|ARM.ActiveCfg = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|ARM.Build.0 = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|x64.ActiveCfg = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|x64.Build.0 = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|x86.ActiveCfg = Release|Any CPU - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8}.Release|x86.Build.0 = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|ARM.ActiveCfg = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|ARM.Build.0 = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|x64.ActiveCfg = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|x64.Build.0 = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|x86.ActiveCfg = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Debug|x86.Build.0 = Debug|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|Any CPU.Build.0 = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|ARM.ActiveCfg = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|ARM.Build.0 = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|x64.ActiveCfg = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|x64.Build.0 = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|x86.ActiveCfg = Release|Any CPU - {EF44F661-B98A-4676-927F-85D138F82300}.Release|x86.Build.0 = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|ARM.ActiveCfg = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|ARM.Build.0 = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|x64.ActiveCfg = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|x64.Build.0 = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|x86.ActiveCfg = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Debug|x86.Build.0 = Debug|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|Any CPU.Build.0 = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|ARM.ActiveCfg = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|ARM.Build.0 = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|x64.ActiveCfg = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|x64.Build.0 = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|x86.ActiveCfg = Release|Any CPU - {F789647E-96F7-43E3-A895-FA3FE8D01260}.Release|x86.Build.0 = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|ARM.ActiveCfg = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|ARM.Build.0 = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|x64.ActiveCfg = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|x64.Build.0 = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|x86.ActiveCfg = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Debug|x86.Build.0 = Debug|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|Any CPU.Build.0 = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|ARM.ActiveCfg = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|ARM.Build.0 = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|x64.ActiveCfg = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|x64.Build.0 = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|x86.ActiveCfg = Release|Any CPU - {86470440-FEE2-4120-AF5A-3762FB9C536F}.Release|x86.Build.0 = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|ARM.ActiveCfg = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|ARM.Build.0 = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|x64.ActiveCfg = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|x64.Build.0 = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|x86.ActiveCfg = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Debug|x86.Build.0 = Debug|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|Any CPU.Build.0 = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|ARM.ActiveCfg = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|ARM.Build.0 = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|x64.ActiveCfg = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|x64.Build.0 = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|x86.ActiveCfg = Release|Any CPU - {EB133B78-DEFF-416A-8F0C-89E54D766576}.Release|x86.Build.0 = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|Any CPU.Build.0 = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|ARM.ActiveCfg = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|ARM.Build.0 = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|x64.ActiveCfg = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|x64.Build.0 = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|x86.ActiveCfg = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Debug|x86.Build.0 = Debug|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|Any CPU.ActiveCfg = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|Any CPU.Build.0 = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|ARM.ActiveCfg = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|ARM.Build.0 = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|x64.ActiveCfg = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|x64.Build.0 = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|x86.ActiveCfg = Release|Any CPU - {63CEFDF7-5170-43B6-86F8-5C4A383A1615}.Release|x86.Build.0 = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|Any CPU.Build.0 = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|ARM.ActiveCfg = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|ARM.Build.0 = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|x64.ActiveCfg = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|x64.Build.0 = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|x86.ActiveCfg = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Debug|x86.Build.0 = Debug|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|Any CPU.ActiveCfg = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|Any CPU.Build.0 = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|ARM.ActiveCfg = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|ARM.Build.0 = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|x64.ActiveCfg = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|x64.Build.0 = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|x86.ActiveCfg = Release|Any CPU - {226F3575-B683-446D-A2F0-181291DC8787}.Release|x86.Build.0 = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|ARM.ActiveCfg = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|ARM.Build.0 = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|x64.ActiveCfg = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|x64.Build.0 = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|x86.ActiveCfg = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Debug|x86.Build.0 = Debug|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|Any CPU.Build.0 = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|ARM.ActiveCfg = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|ARM.Build.0 = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|x64.ActiveCfg = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|x64.Build.0 = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|x86.ActiveCfg = Release|Any CPU - {9949326E-9261-4F95-89B1-151F60498951}.Release|x86.Build.0 = Release|Any CPU - {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|Any CPU.ActiveCfg = Debug|ARM + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|ARM.ActiveCfg = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|ARM.Build.0 = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|x64.ActiveCfg = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|x64.Build.0 = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|x86.ActiveCfg = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Debug|x86.Build.0 = Debug|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|Any CPU.Build.0 = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|ARM.ActiveCfg = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|ARM.Build.0 = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|x64.ActiveCfg = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|x64.Build.0 = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|x86.ActiveCfg = Release|Any CPU + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D}.Release|x86.Build.0 = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|Any CPU.Build.0 = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|ARM.ActiveCfg = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|ARM.Build.0 = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|x64.ActiveCfg = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|x64.Build.0 = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|x86.ActiveCfg = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Debug|x86.Build.0 = Debug|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|Any CPU.ActiveCfg = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|Any CPU.Build.0 = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|ARM.ActiveCfg = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|ARM.Build.0 = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|x64.ActiveCfg = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|x64.Build.0 = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|x86.ActiveCfg = Release|Any CPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182}.Release|x86.Build.0 = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|ARM.ActiveCfg = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|ARM.Build.0 = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|x64.ActiveCfg = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|x64.Build.0 = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|x86.ActiveCfg = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Debug|x86.Build.0 = Debug|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|Any CPU.Build.0 = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|ARM.ActiveCfg = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|ARM.Build.0 = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|x64.ActiveCfg = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|x64.Build.0 = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|x86.ActiveCfg = Release|Any CPU + {F92DA93D-75DB-4308-A5F9-6B4C3908A675}.Release|x86.Build.0 = Release|Any CPU + {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|Any CPU.ActiveCfg = Debug|x64 + {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|Any CPU.Build.0 = Debug|x64 + {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|Any CPU.Deploy.0 = Debug|x64 {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|ARM.ActiveCfg = Debug|ARM {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|ARM.Build.0 = Debug|ARM {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Debug|ARM.Deploy.0 = Debug|ARM @@ -189,50 +103,48 @@ Global {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Release|x86.ActiveCfg = Release|x86 {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Release|x86.Build.0 = Release|x86 {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1}.Release|x86.Deploy.0 = Release|x86 - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|Any CPU.Build.0 = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|ARM.ActiveCfg = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|ARM.Build.0 = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|x64.ActiveCfg = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|x64.Build.0 = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|x86.ActiveCfg = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Debug|x86.Build.0 = Debug|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|Any CPU.ActiveCfg = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|Any CPU.Build.0 = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|ARM.ActiveCfg = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|ARM.Build.0 = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|x64.ActiveCfg = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|x64.Build.0 = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|x86.ActiveCfg = Release|Any CPU - {85AACDB7-959D-406D-A8DF-2F1E013F8F40}.Release|x86.Build.0 = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|ARM.ActiveCfg = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|ARM.Build.0 = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|x64.ActiveCfg = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|x64.Build.0 = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|x86.ActiveCfg = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Debug|x86.Build.0 = Debug|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|Any CPU.Build.0 = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|ARM.ActiveCfg = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|ARM.Build.0 = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|x64.ActiveCfg = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|x64.Build.0 = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|x86.ActiveCfg = Release|Any CPU - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4}.Release|x86.Build.0 = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|ARM.ActiveCfg = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|ARM.Build.0 = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|x64.ActiveCfg = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|x64.Build.0 = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|x86.ActiveCfg = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Debug|x86.Build.0 = Debug|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|Any CPU.Build.0 = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|ARM.ActiveCfg = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|ARM.Build.0 = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|x64.ActiveCfg = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|x64.Build.0 = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|x86.ActiveCfg = Release|Any CPU + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133}.Release|x86.Build.0 = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|ARM.ActiveCfg = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|ARM.Build.0 = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|x64.ActiveCfg = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|x64.Build.0 = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|x86.ActiveCfg = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Debug|x86.Build.0 = Debug|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|Any CPU.Build.0 = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|ARM.ActiveCfg = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|ARM.Build.0 = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|x64.ActiveCfg = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|x64.Build.0 = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|x86.ActiveCfg = Release|Any CPU + {3FF37D40-F770-45B2-95DD-7A84093E1425}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {C7BF2B18-CC74-430B-BCB2-600304EFA3D8} = {AE8A7E02-0F7D-41B0-AB23-15394150ED17} - {EF44F661-B98A-4676-927F-85D138F82300} = {AE8A7E02-0F7D-41B0-AB23-15394150ED17} - {F789647E-96F7-43E3-A895-FA3FE8D01260} = {AE8A7E02-0F7D-41B0-AB23-15394150ED17} - {86470440-FEE2-4120-AF5A-3762FB9C536F} = {AE8A7E02-0F7D-41B0-AB23-15394150ED17} - {9949326E-9261-4F95-89B1-151F60498951} = {100879CC-8910-459E-856E-253D629E45DE} - {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1} = {100879CC-8910-459E-856E-253D629E45DE} - {85AACDB7-959D-406D-A8DF-2F1E013F8F40} = {100879CC-8910-459E-856E-253D629E45DE} - {7FB616E1-E0D4-48FA-8AFD-60E73FCF32E4} = {100879CC-8910-459E-856E-253D629E45DE} + {A204A102-C745-4D65-AEC8-7B96FAEDEF2D} = {52AECE49-F314-4F76-98F2-FA800F07824B} + {951BC5D2-D653-42D9-9A91-21DC50DE0182} = {52AECE49-F314-4F76-98F2-FA800F07824B} + {F92DA93D-75DB-4308-A5F9-6B4C3908A675} = {8F2103C2-78AF-4810-8FB9-67572F50C8FC} + {AA62B4AA-1CA3-4C20-BEB7-B824D0FC4BD1} = {8F2103C2-78AF-4810-8FB9-67572F50C8FC} + {AD1CB53E-7AA4-4EC0-B901-B4E0E2665133} = {6A596588-F93F-47CC-BE5D-58C3B34ADDEB} + {3FF37D40-F770-45B2-95DD-7A84093E1425} = {6A596588-F93F-47CC-BE5D-58C3B34ADDEB} EndGlobalSection EndGlobal diff --git a/MapControl/BingMapsTileLayer.cs b/MapControl/BingMapsTileLayer.cs deleted file mode 100644 index 9ebaa46d..00000000 --- a/MapControl/BingMapsTileLayer.cs +++ /dev/null @@ -1,179 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Globalization; -using System.Net; -using System.Xml; -#if NETFX_CORE -using Windows.UI.Xaml; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Media.Imaging; -#else -using System.Windows; -using System.Windows.Media; -using System.Windows.Media.Imaging; -#endif - -namespace MapControl -{ - /// - /// Displays Bing Maps tiles. The static ApiKey property must be set to a Bing Maps API Key. - /// Tile image URLs and min/max zoom levels are retrieved from the Imagery Metadata Service - /// (see http://msdn.microsoft.com/en-us/library/ff701716.aspx). - /// - public class BingMapsTileLayer : MapTileLayer - { - public enum MapMode - { - Road, Aerial, AerialWithLabels - } - - public BingMapsTileLayer() - : this(new TileImageLoader()) - { - } - - public BingMapsTileLayer(ITileImageLoader tileImageLoader) - : base(tileImageLoader) - { - MinZoomLevel = 1; - MaxZoomLevel = 21; - Loaded += OnLoaded; - } - - public static string ApiKey { get; set; } - - public MapMode Mode { get; set; } - public string Culture { get; set; } - public ImageSource LogoImage { get; set; } - - private void OnLoaded(object sender, RoutedEventArgs e) - { - Loaded -= OnLoaded; - - if (string.IsNullOrEmpty(ApiKey)) - { - Debug.WriteLine("BingMapsTileLayer requires a Bing Maps API Key"); - } - else - { - var uri = string.Format("http://dev.virtualearth.net/REST/V1/Imagery/Metadata/{0}?output=xml&key={1}", Mode, ApiKey); - var request = WebRequest.CreateHttp(uri); - - request.BeginGetResponse(HandleImageryMetadataResponse, request); - } - } - - private void HandleImageryMetadataResponse(IAsyncResult asyncResult) - { - try - { - var request = (HttpWebRequest)asyncResult.AsyncState; - - using (var response = request.EndGetResponse(asyncResult)) - using (var xmlReader = XmlReader.Create(response.GetResponseStream())) - { - ReadImageryMetadataResponse(xmlReader); - } - } - catch (Exception ex) - { - Debug.WriteLine(ex.Message); - } - } - - private void ReadImageryMetadataResponse(XmlReader xmlReader) - { - string logoUri = null; - string imageUrl = null; - string[] imageUrlSubdomains = null; - int? zoomMin = null; - int? zoomMax = null; - - do - { - if (xmlReader.NodeType == XmlNodeType.Element) - { - switch (xmlReader.Name) - { - case "BrandLogoUri": - logoUri = xmlReader.ReadElementContentAsString(); - break; - case "ImageUrl": - imageUrl = xmlReader.ReadElementContentAsString(); - break; - case "ImageUrlSubdomains": - imageUrlSubdomains = ReadStrings(xmlReader.ReadSubtree()); - break; - case "ZoomMin": - zoomMin = xmlReader.ReadElementContentAsInt(); - break; - case "ZoomMax": - zoomMax = xmlReader.ReadElementContentAsInt(); - break; - default: - xmlReader.Read(); - break; - } - } - else - { - xmlReader.Read(); - } - } - while (xmlReader.NodeType != XmlNodeType.None); - - if (!string.IsNullOrEmpty(imageUrl) && imageUrlSubdomains != null && imageUrlSubdomains.Length > 0) - { - var op = Dispatcher.BeginInvoke(new Action(() => - { - if (string.IsNullOrEmpty(Culture)) - { - Culture = CultureInfo.CurrentUICulture.Name; - } - - TileSource = new BingMapsTileSource(imageUrl.Replace("{culture}", Culture), imageUrlSubdomains); - - if (zoomMin.HasValue && zoomMin.Value > MinZoomLevel) - { - MinZoomLevel = zoomMin.Value; - } - - if (zoomMax.HasValue && zoomMax.Value < MaxZoomLevel) - { - MaxZoomLevel = zoomMax.Value; - } - - if (!string.IsNullOrEmpty(logoUri)) - { - LogoImage = new BitmapImage(new Uri(logoUri)); - } - })); - } - } - - private static string[] ReadStrings(XmlReader xmlReader) - { - var strings = new List(); - - do - { - if (xmlReader.NodeType == XmlNodeType.Element && xmlReader.Name == "string") - { - strings.Add(xmlReader.ReadElementContentAsString()); - } - else - { - xmlReader.Read(); - } - } - while (xmlReader.NodeType != XmlNodeType.None); - - return strings.ToArray(); - } - } -} diff --git a/MapControl/BitmapSourceHelper.cs b/MapControl/BitmapSourceHelper.cs deleted file mode 100644 index efb32737..00000000 --- a/MapControl/BitmapSourceHelper.cs +++ /dev/null @@ -1,58 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.IO; -using System.Net; -using System.Windows.Media.Imaging; - -namespace MapControl -{ - /// - /// Creates frozen BitmapSources from Stream, file or Uri. - /// - public static class BitmapSourceHelper - { - public static BitmapSource FromStream(Stream stream) - { - return BitmapFrame.Create(stream, BitmapCreateOptions.None, BitmapCacheOption.OnLoad); - } - - public static BitmapSource FromFile(string path) - { - if (!File.Exists(path)) - { - return null; - } - - using (var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read)) - { - return FromStream(fileStream); - } - } - - public static BitmapSource FromUri(Uri uri) - { - if (!uri.IsAbsoluteUri) - { - return FromFile(uri.OriginalString); - } - - if (uri.Scheme == "file") - { - return FromFile(uri.LocalPath); - } - - using (var response = WebRequest.Create(uri).GetResponse()) - using (var responseStream = response.GetResponseStream()) - using (var memoryStream = new MemoryStream()) - { - responseStream.CopyTo(memoryStream); - memoryStream.Seek(0, SeekOrigin.Begin); - - return FromStream(memoryStream); - } - } - } -} diff --git a/MapControl/BoundingBoxConverter.cs b/MapControl/BoundingBoxConverter.cs deleted file mode 100644 index 6c76f1b7..00000000 --- a/MapControl/BoundingBoxConverter.cs +++ /dev/null @@ -1,31 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.ComponentModel; -using System.Globalization; - -namespace MapControl -{ - public class BoundingBoxConverter : TypeConverter - { - public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - { - return sourceType == typeof(string); - } - - public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) - { - return BoundingBox.Parse((string)value); - } - } - - [TypeConverter(typeof(BoundingBoxConverter))] -#if !SILVERLIGHT - [Serializable] -#endif - public partial class BoundingBox - { - } -} diff --git a/MapControl/Extensions.Silverlight.cs b/MapControl/Extensions.Silverlight.cs deleted file mode 100644 index eb6352eb..00000000 --- a/MapControl/Extensions.Silverlight.cs +++ /dev/null @@ -1,21 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System.Windows; -using System.Windows.Media.Animation; - -namespace MapControl -{ - internal static class Extensions - { - public static void BeginAnimation(this DependencyObject obj, DependencyProperty property, Timeline animation) - { - Storyboard.SetTargetProperty(animation, new PropertyPath(property)); - Storyboard.SetTarget(animation, obj); - var storyboard = new Storyboard(); - storyboard.Children.Add(animation); - storyboard.Begin(); - } - } -} diff --git a/MapControl/ImageTileSource.Silverlight.WinRT.cs b/MapControl/ImageTileSource.Silverlight.WinRT.cs deleted file mode 100644 index 824d0a5f..00000000 --- a/MapControl/ImageTileSource.Silverlight.WinRT.cs +++ /dev/null @@ -1,29 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -#if NETFX_CORE -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Media.Imaging; -#else -using System.Windows.Media; -using System.Windows.Media.Imaging; -#endif - -namespace MapControl -{ - /// - /// Provides the image of a map tile. - /// ImageTileSource bypasses image downloading and optional caching in TileImageLoader. - /// By overriding the LoadImage method, an application can provide tile images from an arbitrary source. - /// - public class ImageTileSource : TileSource - { - public virtual ImageSource LoadImage(int x, int y, int zoomLevel) - { - var uri = GetUri(x, y, zoomLevel); - - return uri != null ? new BitmapImage(uri) : null; - } - } -} diff --git a/MapControl/ImageTileSource.WPF.cs b/MapControl/ImageTileSource.WPF.cs deleted file mode 100644 index fe0711ba..00000000 --- a/MapControl/ImageTileSource.WPF.cs +++ /dev/null @@ -1,24 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System.Windows.Media; - -namespace MapControl -{ - /// - /// Provides the image of a map tile. - /// ImageTileSource bypasses image downloading and optional caching in TileImageLoader. - /// By overriding the LoadImage method, an application can provide tile images from an arbitrary source. - /// LoadImage will be called from a non-UI thread and must therefore return a frozen ImageSource. - /// - public class ImageTileSource : TileSource - { - public virtual ImageSource LoadImage(int x, int y, int zoomLevel) - { - var uri = GetUri(x, y, zoomLevel); - - return uri != null ? BitmapSourceHelper.FromUri(uri) : null; - } - } -} diff --git a/MapControl/LocationCollectionConverter.cs b/MapControl/LocationCollectionConverter.cs deleted file mode 100644 index 8c9874f0..00000000 --- a/MapControl/LocationCollectionConverter.cs +++ /dev/null @@ -1,28 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.ComponentModel; -using System.Globalization; - -namespace MapControl -{ - public class LocationCollectionConverter : TypeConverter - { - public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - { - return sourceType == typeof(string); - } - - public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) - { - return LocationCollection.Parse((string)value); - } - } - - [TypeConverter(typeof(LocationCollectionConverter))] - public partial class LocationCollection - { - } -} diff --git a/MapControl/LocationConverter.cs b/MapControl/LocationConverter.cs deleted file mode 100644 index 8318df1b..00000000 --- a/MapControl/LocationConverter.cs +++ /dev/null @@ -1,31 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.ComponentModel; -using System.Globalization; - -namespace MapControl -{ - public class LocationConverter : TypeConverter - { - public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - { - return sourceType == typeof(string); - } - - public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) - { - return Location.Parse((string)value); - } - } - - [TypeConverter(typeof(LocationConverter))] -#if !SILVERLIGHT - [Serializable] -#endif - public partial class Location - { - } -} diff --git a/MapControl/Map.Silverlight.cs b/MapControl/Map.Silverlight.cs deleted file mode 100644 index fc6c3839..00000000 --- a/MapControl/Map.Silverlight.cs +++ /dev/null @@ -1,70 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System.Windows; -using System.Windows.Input; - -namespace MapControl -{ - /// - /// MapBase with default input event handling. - /// - public class Map : MapBase - { - public static readonly DependencyProperty MouseWheelZoomDeltaProperty = DependencyProperty.Register( - nameof(MouseWheelZoomDelta), typeof(double), typeof(Map), new PropertyMetadata(1d)); - - private Point? mousePosition; - - public Map() - { - MouseWheel += OnMouseWheel; - MouseLeftButtonDown += OnMouseLeftButtonDown; - MouseLeftButtonUp += OnMouseLeftButtonUp; - MouseMove += OnMouseMove; - } - - /// - /// Gets or sets the amount by which the ZoomLevel property changes during a MouseWheel event. - /// - public double MouseWheelZoomDelta - { - get { return (double)GetValue(MouseWheelZoomDeltaProperty); } - set { SetValue(MouseWheelZoomDeltaProperty, value); } - } - - private void OnMouseWheel(object sender, MouseWheelEventArgs e) - { - var zoomChange = MouseWheelZoomDelta * e.Delta / 120d; - ZoomMap(e.GetPosition(this), TargetZoomLevel + zoomChange); - } - - private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e) - { - if (CaptureMouse()) - { - mousePosition = e.GetPosition(this); - } - } - - private void OnMouseLeftButtonUp(object sender, MouseButtonEventArgs e) - { - if (mousePosition.HasValue) - { - mousePosition = null; - ReleaseMouseCapture(); - } - } - - private void OnMouseMove(object sender, MouseEventArgs e) - { - if (mousePosition.HasValue) - { - var position = e.GetPosition(this); - TranslateMap(new Point(position.X - mousePosition.Value.X, position.Y - mousePosition.Value.Y)); - mousePosition = position; - } - } - } -} diff --git a/MapControl/MapControl.Silverlight.csproj b/MapControl/MapControl.Silverlight.csproj deleted file mode 100644 index b928a02f..00000000 --- a/MapControl/MapControl.Silverlight.csproj +++ /dev/null @@ -1,156 +0,0 @@ - - - - Debug - AnyCPU - 8.0.50727 - 2.0 - {EB133B78-DEFF-416A-8F0C-89E54D766576} - {A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} - Library - Properties - MapControl - MapControl.Silverlight - Silverlight - v5.0 - $(TargetFrameworkVersion) - false - true - true - - - - - v3.5 - - - true - full - false - bin\Debug\ - DEBUG;TRACE;SILVERLIGHT - true - true - prompt - 4 - false - - - none - true - bin\Release\ - TRACE;SILVERLIGHT - true - true - prompt - 4 - false - - - OnBuildSuccess - - - true - - - ..\MapControl.snk - - - - - - - $(TargetFrameworkDirectory)System.Core.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Designer - MSBuild:Compile - - - - - MapControl.snk - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MapControl/MapControl.Silverlight.csproj.user b/MapControl/MapControl.Silverlight.csproj.user deleted file mode 100644 index 8b80b1f4..00000000 --- a/MapControl/MapControl.Silverlight.csproj.user +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - DynamicPage - True - False - False - - - - - - - - - True - - - True - - - - - \ No newline at end of file diff --git a/MapControl/MapControl.WPF.csproj b/MapControl/MapControl.WPF.csproj deleted file mode 100644 index 8686ca08..00000000 --- a/MapControl/MapControl.WPF.csproj +++ /dev/null @@ -1,135 +0,0 @@ - - - - - Debug - AnyCPU - {226F3575-B683-446D-A2F0-181291DC8787} - Library - Properties - MapControl - MapControl.WPF - v4.5 - 512 - - - - true - full - false - bin\Debug\ - TRACE;DEBUG - prompt - 4 - false - - - none - true - bin\Release\ - TRACE - prompt - 4 - false - - - OnBuildSuccess - - - true - - - ..\MapControl.snk - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Designer - MSBuild:Compile - - - - - MapControl.snk - - - - - - - - - - - - - \ No newline at end of file diff --git a/MapControl/MapImageLayer.WPF.cs b/MapControl/MapImageLayer.WPF.cs deleted file mode 100644 index eee4c685..00000000 --- a/MapControl/MapImageLayer.WPF.cs +++ /dev/null @@ -1,69 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Diagnostics; -using System.Threading.Tasks; -using System.Windows.Controls; -using System.Windows.Media; -using System.Windows.Media.Imaging; - -namespace MapControl -{ - public partial class MapImageLayer - { - protected void UpdateImage(Uri uri) - { - Task.Run(() => - { - BitmapSource image = null; - - try - { - image = BitmapSourceHelper.FromUri(uri); - } - catch (Exception ex) - { - Debug.WriteLine("{0}: {1}", uri, ex.Message); - } - - Dispatcher.BeginInvoke(new Action(() => UpdateImage(image))); - }); - } - - protected void UpdateImage(BitmapSource bitmap) - { - SetTopImage(bitmap); - - if (bitmap != null && !bitmap.IsFrozen && bitmap.IsDownloading) - { - bitmap.DownloadCompleted += BitmapDownloadCompleted; - bitmap.DownloadFailed += BitmapDownloadFailed; - } - else - { - SwapImages(); - } - } - - private void BitmapDownloadCompleted(object sender, EventArgs e) - { - var bitmap = (BitmapSource)sender; - bitmap.DownloadCompleted -= BitmapDownloadCompleted; - bitmap.DownloadFailed -= BitmapDownloadFailed; - - SwapImages(); - } - - private void BitmapDownloadFailed(object sender, ExceptionEventArgs e) - { - var bitmap = (BitmapSource)sender; - bitmap.DownloadCompleted -= BitmapDownloadCompleted; - bitmap.DownloadFailed -= BitmapDownloadFailed; - - ((Image)Children[topImageIndex]).Source = null; - SwapImages(); - } - } -} diff --git a/MapControl/MatrixEx.Silverlight.WinRT.cs b/MapControl/MatrixEx.Silverlight.WinRT.cs deleted file mode 100644 index 1bd346c3..00000000 --- a/MapControl/MatrixEx.Silverlight.WinRT.cs +++ /dev/null @@ -1,82 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -#if NETFX_CORE -using Windows.Foundation; -using Windows.UI.Xaml.Media; -#else -using System.Windows; -using System.Windows.Media; -#endif - -namespace MapControl -{ - internal static class MatrixEx - { - /// - /// Used in MapProjection and MapTileLayer. - /// - public static Matrix TranslateScaleRotateTranslate( - double translation1X, double translation1Y, - double scaleX, double scaleY, double rotationAngle, - double translation2X, double translation2Y) - { - return new Matrix(1d, 0d, 0d, 1d, -translation1X, -translation1Y) - .Scale(scaleX, scaleY) - .Rotate(rotationAngle) - .Translate(translation2X, translation2Y); - } - - private static Matrix Translate(this Matrix matrix, double offsetX, double offsetY) - { - matrix.OffsetX += offsetX; - matrix.OffsetY += offsetY; - return matrix; - } - - private static Matrix Scale(this Matrix matrix, double scaleX, double scaleY) - { - return Multiply(matrix, new Matrix(scaleX, 0d, 0d, scaleY, 0d, 0d)); - } - - private static Matrix Rotate(this Matrix matrix, double angle) - { - if (angle == 0d) - { - return matrix; - } - - angle = (angle % 360d) / 180d * Math.PI; - var cos = Math.Cos(angle); - var sin = Math.Sin(angle); - - return Multiply(matrix, new Matrix(cos, sin, -sin, cos, 0d, 0d)); - } - - private static Matrix Invert(this Matrix matrix) - { - var determinant = matrix.M11 * matrix.M22 - matrix.M12 * matrix.M21; - - return new Matrix( - matrix.M22 / determinant, - -matrix.M12 / determinant, - -matrix.M21 / determinant, - matrix.M11 / determinant, - (matrix.M21 * matrix.OffsetY - matrix.M22 * matrix.OffsetX) / determinant, - (matrix.M12 * matrix.OffsetX - matrix.M11 * matrix.OffsetY) / determinant); - } - - private static Matrix Multiply(this Matrix matrix1, Matrix matrix2) - { - return new Matrix( - matrix1.M11 * matrix2.M11 + matrix1.M12 * matrix2.M21, - matrix1.M11 * matrix2.M12 + matrix1.M12 * matrix2.M22, - matrix1.M21 * matrix2.M11 + matrix1.M22 * matrix2.M21, - matrix1.M21 * matrix2.M12 + matrix1.M22 * matrix2.M22, - (matrix2.M11 * matrix1.OffsetX + matrix2.M21 * matrix1.OffsetY) + matrix2.OffsetX, - (matrix2.M12 * matrix1.OffsetX + matrix2.M22 * matrix1.OffsetY) + matrix2.OffsetY); - } - } -} diff --git a/MapControl/AzimuthalEquidistantProjection.cs b/MapControl/Shared/AzimuthalEquidistantProjection.cs similarity index 99% rename from MapControl/AzimuthalEquidistantProjection.cs rename to MapControl/Shared/AzimuthalEquidistantProjection.cs index 96df920f..732c3ce1 100644 --- a/MapControl/AzimuthalEquidistantProjection.cs +++ b/MapControl/Shared/AzimuthalEquidistantProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapControl/AzimuthalProjection.cs b/MapControl/Shared/AzimuthalProjection.cs similarity index 98% rename from MapControl/AzimuthalProjection.cs rename to MapControl/Shared/AzimuthalProjection.cs index 573bef23..1de51917 100644 --- a/MapControl/AzimuthalProjection.cs +++ b/MapControl/Shared/AzimuthalProjection.cs @@ -4,7 +4,7 @@ using System; using System.Globalization; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; @@ -27,7 +27,7 @@ namespace MapControl public override double GetViewportScale(double zoomLevel) { - return base.GetViewportScale(zoomLevel) / MetersPerDegree; + return DegreesToViewportScale(zoomLevel) / MetersPerDegree; } public override Point GetMapScale(Location location) diff --git a/MapControl/Shared/BingMapsTileLayer.cs b/MapControl/Shared/BingMapsTileLayer.cs new file mode 100644 index 00000000..49672a1e --- /dev/null +++ b/MapControl/Shared/BingMapsTileLayer.cs @@ -0,0 +1,138 @@ +// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control +// © 2017 Clemens Fischer +// Licensed under the Microsoft Public License (Ms-PL) + +using System; +using System.Diagnostics; +using System.Globalization; +using System.Linq; +#if WINDOWS_UWP +using Windows.Data.Xml.Dom; +using Windows.UI.Xaml; +#else +using System.Windows; +using System.Xml; +#endif + +namespace MapControl +{ + /// + /// Displays Bing Maps tiles. The static ApiKey property must be set to a Bing Maps API Key. + /// Tile image URLs and min/max zoom levels are retrieved from the Imagery Metadata Service + /// (see http://msdn.microsoft.com/en-us/library/ff701716.aspx). + /// + public class BingMapsTileLayer : MapTileLayer + { + public enum MapMode + { + Road, Aerial, AerialWithLabels + } + + public BingMapsTileLayer() + : this(new TileImageLoader()) + { + } + + public BingMapsTileLayer(ITileImageLoader tileImageLoader) + : base(tileImageLoader) + { + MinZoomLevel = 1; + MaxZoomLevel = 21; + Loaded += OnLoaded; + } + + public static string ApiKey { get; set; } + + public MapMode Mode { get; set; } + public string Culture { get; set; } + public Uri LogoImageUri { get; set; } + + private async void OnLoaded(object sender, RoutedEventArgs e) + { + Loaded -= OnLoaded; + + if (string.IsNullOrEmpty(ApiKey)) + { + Debug.WriteLine("BingMapsTileLayer requires a Bing Maps API Key"); + return; + } + + var imageryMetadataUrl = "http://dev.virtualearth.net/REST/V1/Imagery/Metadata/" + Mode; + + try + { + var document = await XmlDocument.LoadFromUriAsync(new Uri(imageryMetadataUrl + "?output=xml&key=" + ApiKey)); + var imageryMetadata = document.DocumentElement.GetElementsByTagName("ImageryMetadata").OfType().FirstOrDefault(); + + if (imageryMetadata != null) + { + ReadImageryMetadata(imageryMetadata); + } + + var brandLogoUri = document.DocumentElement.GetElementsByTagName("BrandLogoUri").OfType().FirstOrDefault(); + + if (brandLogoUri != null) + { + LogoImageUri = new Uri(brandLogoUri.InnerText); + } + } + catch (Exception ex) + { + Debug.WriteLine("BingMapsTileLayer: {0}: {1}", imageryMetadataUrl, ex.Message); + } + } + + private void ReadImageryMetadata(XmlElement imageryMetadata) + { + string imageUrl = null; + string[] imageUrlSubdomains = null; + int? zoomMin = null; + int? zoomMax = null; + + foreach (var element in imageryMetadata.ChildNodes.OfType()) + { + switch ((string)element.LocalName) + { + case "ImageUrl": + imageUrl = element.InnerText; + break; + case "ImageUrlSubdomains": + imageUrlSubdomains = element.ChildNodes + .OfType() + .Where(e => (string)e.LocalName == "string") + .Select(e => e.InnerText) + .ToArray(); + break; + case "ZoomMin": + zoomMin = int.Parse(element.InnerText); + break; + case "ZoomMax": + zoomMax = int.Parse(element.InnerText); + break; + default: + break; + } + } + + if (!string.IsNullOrEmpty(imageUrl) && imageUrlSubdomains != null && imageUrlSubdomains.Length > 0) + { + if (zoomMin.HasValue && zoomMin.Value > MinZoomLevel) + { + MinZoomLevel = zoomMin.Value; + } + + if (zoomMax.HasValue && zoomMax.Value < MaxZoomLevel) + { + MaxZoomLevel = zoomMax.Value; + } + + if (string.IsNullOrEmpty(Culture)) + { + Culture = CultureInfo.CurrentUICulture.Name; + } + + TileSource = new BingMapsTileSource(imageUrl.Replace("{culture}", Culture), imageUrlSubdomains); + } + } + } +} diff --git a/MapControl/BingMapsTileSource.cs b/MapControl/Shared/BingMapsTileSource.cs similarity index 95% rename from MapControl/BingMapsTileSource.cs rename to MapControl/Shared/BingMapsTileSource.cs index 69be1948..7c93c607 100644 --- a/MapControl/BingMapsTileSource.cs +++ b/MapControl/Shared/BingMapsTileSource.cs @@ -6,7 +6,7 @@ using System; namespace MapControl { - internal class BingMapsTileSource : TileSource + public class BingMapsTileSource : TileSource { private readonly string[] subdomains; diff --git a/MapControl/BoundingBox.cs b/MapControl/Shared/BoundingBox.cs similarity index 100% rename from MapControl/BoundingBox.cs rename to MapControl/Shared/BoundingBox.cs diff --git a/MapControl/CenteredBoundingBox.cs b/MapControl/Shared/CenteredBoundingBox.cs similarity index 100% rename from MapControl/CenteredBoundingBox.cs rename to MapControl/Shared/CenteredBoundingBox.cs diff --git a/MapControl/EquirectangularProjection.cs b/MapControl/Shared/EquirectangularProjection.cs similarity index 98% rename from MapControl/EquirectangularProjection.cs rename to MapControl/Shared/EquirectangularProjection.cs index ac100a71..4645b6d7 100644 --- a/MapControl/EquirectangularProjection.cs +++ b/MapControl/Shared/EquirectangularProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapControl/GnomonicProjection.cs b/MapControl/Shared/GnomonicProjection.cs similarity index 99% rename from MapControl/GnomonicProjection.cs rename to MapControl/Shared/GnomonicProjection.cs index 3492f77a..d44e274c 100644 --- a/MapControl/GnomonicProjection.cs +++ b/MapControl/Shared/GnomonicProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapControl/HyperlinkText.cs b/MapControl/Shared/HyperlinkText.cs similarity index 87% rename from MapControl/HyperlinkText.cs rename to MapControl/Shared/HyperlinkText.cs index 442d56ac..01c0d589 100644 --- a/MapControl/HyperlinkText.cs +++ b/MapControl/Shared/HyperlinkText.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Text.RegularExpressions; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Documents; @@ -43,9 +43,7 @@ namespace MapControl var link = new Hyperlink { NavigateUri = uri }; link.Inlines.Add(new Run { Text = match.Groups[1].Value }); -#if SILVERLIGHT - link.TargetName = "_blank"; -#elif !NETFX_CORE +#if !WINDOWS_UWP link.ToolTip = uri.ToString(); link.RequestNavigate += (s, e) => System.Diagnostics.Process.Start(e.Uri.ToString()); #endif @@ -86,16 +84,7 @@ namespace MapControl { inlines = ((Paragraph)obj).Inlines; } -#if NETFX_CORE || SILVERLIGHT - else if (obj is RichTextBlock) - { - var paragraph = new Paragraph(); - inlines = paragraph.Inlines; - var richTextBlock = (RichTextBlock)obj; - richTextBlock.Blocks.Clear(); - richTextBlock.Blocks.Add(paragraph); - } -#endif + if (inlines != null) { inlines.Clear(); diff --git a/MapControl/Location.cs b/MapControl/Shared/Location.cs similarity index 93% rename from MapControl/Location.cs rename to MapControl/Shared/Location.cs index 73d8b32a..a911fcb5 100644 --- a/MapControl/Location.cs +++ b/MapControl/Shared/Location.cs @@ -39,10 +39,9 @@ namespace MapControl public bool Equals(Location location) { - return ReferenceEquals(this, location) - || (location != null - && location.latitude == latitude - && location.longitude == longitude); + return location != null + && Math.Abs(location.latitude - latitude) < 1e-9 + && Math.Abs(location.longitude - longitude) < 1e-9; } public override bool Equals(object obj) diff --git a/MapControl/LocationCollection.cs b/MapControl/Shared/LocationCollection.cs similarity index 100% rename from MapControl/LocationCollection.cs rename to MapControl/Shared/LocationCollection.cs diff --git a/MapControl/MapBase.cs b/MapControl/Shared/MapBase.cs similarity index 99% rename from MapControl/MapBase.cs rename to MapControl/Shared/MapBase.cs index b0bfe14c..821888b1 100644 --- a/MapControl/MapBase.cs +++ b/MapControl/Shared/MapBase.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Media; diff --git a/MapControl/MapGraticule.cs b/MapControl/Shared/MapGraticule.cs similarity index 94% rename from MapControl/MapGraticule.cs rename to MapControl/Shared/MapGraticule.cs index d7b9af96..02516aa0 100644 --- a/MapControl/MapGraticule.cs +++ b/MapControl/Shared/MapGraticule.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Xaml; #else using System.Windows; @@ -30,7 +30,7 @@ namespace MapControl private double GetLineDistance() { - var minDistance = MinLineDistance * 360d / (Math.Pow(2d, ParentMap.ZoomLevel) * TileSource.TileSize); + var minDistance = MinLineDistance / MapProjection.DegreesToViewportScale(ParentMap.ZoomLevel); var scale = 1d; if (minDistance < 1d) diff --git a/MapControl/MapImageLayer.cs b/MapControl/Shared/MapImageLayer.cs similarity index 98% rename from MapControl/MapImageLayer.cs rename to MapControl/Shared/MapImageLayer.cs index c440051e..f8e9f62a 100644 --- a/MapControl/MapImageLayer.cs +++ b/MapControl/Shared/MapImageLayer.cs @@ -4,7 +4,7 @@ using System; using System.Diagnostics; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; @@ -279,7 +279,7 @@ namespace MapControl } catch (Exception ex) { - Debug.WriteLine(ex.Message); + Debug.WriteLine("MapImageLayer: " + ex.Message); } if (!imageUpdated) @@ -295,12 +295,12 @@ namespace MapControl /// protected abstract bool UpdateImage(BoundingBox boundingBox); - private void SetTopImage(BitmapSource bitmap) + private void SetTopImage(BitmapSource bitmapSource) { topImageIndex = (topImageIndex + 1) % 2; var topImage = (Image)Children[topImageIndex]; - topImage.Source = bitmap; + topImage.Source = bitmapSource; SetBoundingBox(topImage, boundingBox?.Clone()); } diff --git a/MapControl/MapOverlay.cs b/MapControl/Shared/MapOverlay.cs similarity index 99% rename from MapControl/MapOverlay.cs rename to MapControl/Shared/MapOverlay.cs index 48ac4730..2d239ce1 100644 --- a/MapControl/MapOverlay.cs +++ b/MapControl/Shared/MapOverlay.cs @@ -2,7 +2,7 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Text; using Windows.UI.Xaml.Media; #else diff --git a/MapControl/MapPanel.cs b/MapControl/Shared/MapPanel.cs similarity index 99% rename from MapControl/MapPanel.cs rename to MapControl/Shared/MapPanel.cs index c5973e05..5a5889d5 100644 --- a/MapControl/MapPanel.cs +++ b/MapControl/Shared/MapPanel.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; diff --git a/MapControl/MapPath.cs b/MapControl/Shared/MapPath.cs similarity index 99% rename from MapControl/MapPath.cs rename to MapControl/Shared/MapPath.cs index 55cfbe28..4dbf244a 100644 --- a/MapControl/MapPath.cs +++ b/MapControl/Shared/MapPath.cs @@ -2,7 +2,7 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Xaml; using Windows.UI.Xaml.Media; #else diff --git a/MapControl/MapPolyline.cs b/MapControl/Shared/MapPolyline.cs similarity index 84% rename from MapControl/MapPolyline.cs rename to MapControl/Shared/MapPolyline.cs index bb0537f0..bcada6ad 100644 --- a/MapControl/MapPolyline.cs +++ b/MapControl/Shared/MapPolyline.cs @@ -4,11 +4,10 @@ using System.Collections.Generic; using System.Collections.Specialized; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Xaml; using Windows.UI.Xaml.Media; #else -using System.ComponentModel; using System.Windows; using System.Windows.Media; #endif @@ -28,18 +27,6 @@ namespace MapControl nameof(IsClosed), typeof(bool), typeof(MapPolyline), new PropertyMetadata(false, (o, e) => ((MapPolyline)o).UpdateData())); - /// - /// Gets or sets the locations that define the polyline points. - /// -#if !NETFX_CORE - [TypeConverter(typeof(LocationCollectionConverter))] -#endif - public IEnumerable Locations - { - get { return (IEnumerable)GetValue(LocationsProperty); } - set { SetValue(LocationsProperty, value); } - } - /// /// Gets or sets a value that indicates if the polyline is closed, i.e. is a polygon. /// diff --git a/MapControl/MapProjection.cs b/MapControl/Shared/MapProjection.cs similarity index 90% rename from MapControl/MapProjection.cs rename to MapControl/Shared/MapProjection.cs index 82d38d2a..bf94b35d 100644 --- a/MapControl/MapProjection.cs +++ b/MapControl/Shared/MapProjection.cs @@ -4,7 +4,7 @@ using System; using System.Globalization; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; using Windows.UI.Xaml.Media; #else @@ -15,14 +15,22 @@ using System.Windows.Media; namespace MapControl { /// - /// Defines a map projection between geographic coordinates and cartesian map coordinates - /// and viewport coordinates, i.e. pixels. + /// Defines a map projection between geographic coordinates, cartesian map coordinates and viewport coordinates. /// - public abstract partial class MapProjection + public abstract class MapProjection { + public const int TileSize = 256; public const double Wgs84EquatorialRadius = 6378137d; public const double MetersPerDegree = Wgs84EquatorialRadius * Math.PI / 180d; + /// + /// Gets the scaling factor from cartesian map coordinates in degrees to viewport coordinates for the specified zoom level. + /// + public static double DegreesToViewportScale(double zoomLevel) + { + return Math.Pow(2d, zoomLevel) * TileSize / 360d; + } + /// /// Gets or sets the WMS 1.3.0 CRS Identifier. /// @@ -64,7 +72,7 @@ namespace MapControl /// public virtual double GetViewportScale(double zoomLevel) { - return Math.Pow(2d, zoomLevel) * TileSource.TileSize / 360d; + return DegreesToViewportScale(zoomLevel); } /// @@ -142,7 +150,7 @@ namespace MapControl var center = LocationToPoint(mapCenter); ViewportTransform.Matrix = MatrixEx.TranslateScaleRotateTranslate( - center.X, center.Y, ViewportScale, -ViewportScale, heading, viewportCenter.X, viewportCenter.Y); + -center.X, -center.Y, ViewportScale, -ViewportScale, heading, viewportCenter.X, viewportCenter.Y); } /// diff --git a/MapControl/MapTileLayer.cs b/MapControl/Shared/MapTileLayer.cs similarity index 94% rename from MapControl/MapTileLayer.cs rename to MapControl/Shared/MapTileLayer.cs index ed2f37de..ccf3e691 100644 --- a/MapControl/MapTileLayer.cs +++ b/MapControl/Shared/MapTileLayer.cs @@ -5,16 +5,14 @@ using System; using System.Collections.Generic; using System.Linq; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Markup; using Windows.UI.Xaml.Media; #else using System.Windows; using System.Windows.Controls; -using System.Windows.Markup; using System.Windows.Media; using System.Windows.Threading; #endif @@ -29,11 +27,6 @@ namespace MapControl /// /// Fills the map viewport with map tiles from a TileSource. /// -#if NETFX_CORE - [ContentProperty(Name = "TileSource")] -#else - [ContentProperty("TileSource")] -#endif public partial class MapTileLayer : Panel, IMapLayer { /// @@ -253,9 +246,9 @@ namespace MapControl { foreach (var tile in Tiles) { - var tileSize = TileSource.TileSize << (TileGrid.ZoomLevel - tile.ZoomLevel); - var x = tileSize * tile.X - TileSource.TileSize * TileGrid.XMin; - var y = tileSize * tile.Y - TileSource.TileSize * TileGrid.YMin; + var tileSize = MapProjection.TileSize << (TileGrid.ZoomLevel - tile.ZoomLevel); + var x = tileSize * tile.X - MapProjection.TileSize * TileGrid.XMin; + var y = tileSize * tile.Y - MapProjection.TileSize * TileGrid.YMin; tile.Image.Width = tileSize; tile.Image.Height = tileSize; @@ -322,8 +315,8 @@ namespace MapControl private TileGrid GetTileGrid() { var tileZoomLevel = Math.Max(0, (int)Math.Round(parentMap.ZoomLevel + ZoomLevelOffset)); - var tileScale = (1 << tileZoomLevel); - var scale = tileScale / (Math.Pow(2d, parentMap.ZoomLevel) * TileSource.TileSize); + var tileScale = (double)(1 << tileZoomLevel); + var scale = tileScale / (Math.Pow(2d, parentMap.ZoomLevel) * MapProjection.TileSize); var tileCenterX = tileScale * (0.5 + parentMap.Center.Longitude / 360d); var tileCenterY = tileScale * (0.5 - WebMercatorProjection.LatitudeToY(parentMap.Center.Latitude) / 360d); var viewCenterX = parentMap.RenderSize.Width / 2d; @@ -331,7 +324,7 @@ namespace MapControl var transform = new MatrixTransform { - Matrix = MatrixEx.TranslateScaleRotateTranslate(viewCenterX, viewCenterY, scale, scale, -parentMap.Heading, tileCenterX, tileCenterY) + Matrix = MatrixEx.TranslateScaleRotateTranslate(-viewCenterX, -viewCenterY, scale, scale, -parentMap.Heading, tileCenterX, tileCenterY) }; var bounds = transform.TransformBounds(new Rect(0d, 0d, parentMap.RenderSize.Width, parentMap.RenderSize.Height)); @@ -343,17 +336,17 @@ namespace MapControl private void SetRenderTransform() { - var tileScale = (1 << TileGrid.ZoomLevel); + var tileScale = (double)(1 << TileGrid.ZoomLevel); var scale = Math.Pow(2d, parentMap.ZoomLevel) / tileScale; var tileCenterX = tileScale * (0.5 + parentMap.Center.Longitude / 360d); var tileCenterY = tileScale * (0.5 - WebMercatorProjection.LatitudeToY(parentMap.Center.Latitude) / 360d); - var tileOriginX = TileSource.TileSize * (tileCenterX - TileGrid.XMin); - var tileOriginY = TileSource.TileSize * (tileCenterY - TileGrid.YMin); + var tileOriginX = MapProjection.TileSize * (tileCenterX - TileGrid.XMin); + var tileOriginY = MapProjection.TileSize * (tileCenterY - TileGrid.YMin); var viewCenterX = parentMap.RenderSize.Width / 2d; var viewCenterY = parentMap.RenderSize.Height / 2d; ((MatrixTransform)RenderTransform).Matrix = MatrixEx.TranslateScaleRotateTranslate( - tileOriginX, tileOriginY, scale, scale, parentMap.Heading, viewCenterX, viewCenterY); + -tileOriginX, -tileOriginY, scale, scale, parentMap.Heading, viewCenterX, viewCenterY); } private void UpdateTiles() diff --git a/MapControl/OrthographicProjection.cs b/MapControl/Shared/OrthographicProjection.cs similarity index 99% rename from MapControl/OrthographicProjection.cs rename to MapControl/Shared/OrthographicProjection.cs index 19892b08..79c7eaf7 100644 --- a/MapControl/OrthographicProjection.cs +++ b/MapControl/Shared/OrthographicProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapControl/StereographicProjection.cs b/MapControl/Shared/StereographicProjection.cs similarity index 99% rename from MapControl/StereographicProjection.cs rename to MapControl/Shared/StereographicProjection.cs index 8ec7fd87..7be1bb89 100644 --- a/MapControl/StereographicProjection.cs +++ b/MapControl/Shared/StereographicProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; diff --git a/MapControl/Tile.cs b/MapControl/Shared/Tile.cs similarity index 98% rename from MapControl/Tile.cs rename to MapControl/Shared/Tile.cs index d70fc118..6f29f863 100644 --- a/MapControl/Tile.cs +++ b/MapControl/Shared/Tile.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.UI.Xaml.Controls; #else using System.Windows.Controls; diff --git a/MapControl/TileGrid.cs b/MapControl/Shared/TileGrid.cs similarity index 89% rename from MapControl/TileGrid.cs rename to MapControl/Shared/TileGrid.cs index e329c0e6..00cc2e3a 100644 --- a/MapControl/TileGrid.cs +++ b/MapControl/Shared/TileGrid.cs @@ -25,13 +25,12 @@ namespace MapControl public bool Equals(TileGrid tileGrid) { - return ReferenceEquals(this, tileGrid) - || (tileGrid != null + return tileGrid != null && tileGrid.ZoomLevel == ZoomLevel && tileGrid.XMin == XMin && tileGrid.YMin == YMin && tileGrid.XMax == XMax - && tileGrid.YMax == YMax); + && tileGrid.YMax == YMax; } public override bool Equals(object obj) diff --git a/MapControl/Shared/TileImageLoader.cs b/MapControl/Shared/TileImageLoader.cs new file mode 100644 index 00000000..51891c95 --- /dev/null +++ b/MapControl/Shared/TileImageLoader.cs @@ -0,0 +1,172 @@ +// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control +// © 2017 Clemens Fischer +// Licensed under the Microsoft Public License (Ms-PL) + +using System; +using System.Collections.Concurrent; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +#if WINDOWS_UWP +using Windows.Web.Http; +#else +using System.Net.Http; +#endif + +namespace MapControl +{ + /// + /// Loads and optionally caches map tile images for a MapTileLayer. + /// + public partial class TileImageLoader : ITileImageLoader + { + /// + /// The HttpClient instance used when image data is downloaded from a web resource. + /// + public static HttpClient HttpClient { get; set; } = new HttpClient(); + + /// + /// Default expiration time for cached tile images. Used when no expiration time + /// was transmitted on download. The default value is one day. + /// + public static TimeSpan DefaultCacheExpiration { get; set; } = TimeSpan.FromDays(1); + + /// + /// Minimum expiration time for cached tile images. The default value is one hour. + /// + public static TimeSpan MinimumCacheExpiration { get; set; } = TimeSpan.FromHours(1); + + /// + /// Maximum expiration time for cached tile images. The default value is one week. + /// + public static TimeSpan MaximumCacheExpiration { get; set; } = TimeSpan.FromDays(7); + + /// + /// Format string for creating cache keys from the SourceName property of a TileSource, + /// the ZoomLevel, XIndex, and Y properties of a Tile, and the image file extension. + /// The default value is "{0};{1};{2};{3}{4}". + /// + public static string CacheKeyFormat { get; set; } = "{0};{1};{2};{3}{4}"; + + private const string bingMapsTileInfo = "X-VE-Tile-Info"; + private const string bingMapsNoTile = "no-tile"; + + private readonly ConcurrentStack pendingTiles = new ConcurrentStack(); + private int taskCount; + + public void LoadTiles(MapTileLayer tileLayer) + { + pendingTiles.Clear(); + + var tileSource = tileLayer.TileSource; + var sourceName = tileLayer.SourceName; + var tiles = tileLayer.Tiles.Where(t => t.Pending); + + if (tileSource != null && tiles.Any()) + { + if (Cache == null || string.IsNullOrEmpty(sourceName) || + tileSource.UriFormat == null || !tileSource.UriFormat.StartsWith("http")) + { + // no caching, load tile images in UI thread + + foreach (var tile in tiles) + { + LoadTileImage(tileSource, tile); + } + } + else + { + pendingTiles.PushRange(tiles.Reverse().ToArray()); + + while (taskCount < Math.Min(pendingTiles.Count, tileLayer.MaxParallelDownloads)) + { + Interlocked.Increment(ref taskCount); + + var task = Task.Run(async () => // do not await + { + await LoadPendingTilesAsync(tileSource, sourceName); // run multiple times in parallel + + Interlocked.Decrement(ref taskCount); + }); + } + } + } + } + + private void LoadTileImage(TileSource tileSource, Tile tile) + { + tile.Pending = false; + + try + { + var imageSource = tileSource.LoadImage(tile.XIndex, tile.Y, tile.ZoomLevel); + + if (imageSource != null) + { + tile.SetImage(imageSource); + } + } + catch (Exception ex) + { + Debug.WriteLine("TileImageLoader: {0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); + } + } + + private async Task LoadPendingTilesAsync(TileSource tileSource, string sourceName) + { + Tile tile; + + while (pendingTiles.TryPop(out tile)) + { + tile.Pending = false; + + try + { + var uri = tileSource.GetUri(tile.XIndex, tile.Y, tile.ZoomLevel); + + if (uri != null) + { + var extension = Path.GetExtension(uri.LocalPath); + + if (string.IsNullOrEmpty(extension) || extension == ".jpeg") + { + extension = ".jpg"; + } + + var cacheKey = string.Format(CacheKeyFormat, sourceName, tile.ZoomLevel, tile.XIndex, tile.Y, extension); + + await LoadTileImageAsync(tile, uri, cacheKey); + } + } + catch (Exception ex) + { + Debug.WriteLine("TileImageLoader: {0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); + } + } + } + + private static DateTime GetExpiration(HttpResponseMessage response) + { + var expiration = DefaultCacheExpiration; + var headers = response.Headers; + + if (headers.CacheControl != null && headers.CacheControl.MaxAge.HasValue) + { + expiration = headers.CacheControl.MaxAge.Value; + + if (expiration < MinimumCacheExpiration) + { + expiration = MinimumCacheExpiration; + } + else if (expiration > MaximumCacheExpiration) + { + expiration = MaximumCacheExpiration; + } + } + + return DateTime.UtcNow.Add(expiration); + } + } +} diff --git a/MapControl/TileSource.cs b/MapControl/Shared/TileSource.cs similarity index 85% rename from MapControl/TileSource.cs rename to MapControl/Shared/TileSource.cs index 932680f9..cf268663 100644 --- a/MapControl/TileSource.cs +++ b/MapControl/Shared/TileSource.cs @@ -4,16 +4,21 @@ using System; using System.Globalization; +#if WINDOWS_UWP +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Media.Imaging; +#else +using System.Windows.Media; +using System.Windows.Media.Imaging; +#endif namespace MapControl { /// - /// Provides the URI of a map tile. + /// Provides the download Uri or ImageSource of map tiles. /// public partial class TileSource { - public const int TileSize = 256; - private Func getUri; private string uriFormat = string.Empty; @@ -26,6 +31,9 @@ namespace MapControl this.uriFormat = uriFormat; } + /// + /// Gets or sets the format string to produce tile Uris. + /// public string UriFormat { get { return uriFormat; } @@ -76,11 +84,25 @@ namespace MapControl } } + /// + /// Gets the map tile Uri. + /// public virtual Uri GetUri(int x, int y, int zoomLevel) { return getUri?.Invoke(x, y, zoomLevel); } + /// + /// Gets the map tile ImageSource without caching in TileImageLoader.Cache. + /// By overriding LoadImage an application can provide arbitrary tile images. + /// + public virtual ImageSource LoadImage(int x, int y, int zoomLevel) + { + var uri = GetUri(x, y, zoomLevel); + + return uri != null ? new BitmapImage(uri) : null; + } + private Uri GetBasicUri(int x, int y, int zoomLevel) { return new Uri(uriFormat @@ -170,8 +192,8 @@ namespace MapControl .Replace("{S}", south.ToString(CultureInfo.InvariantCulture)) .Replace("{E}", east.ToString(CultureInfo.InvariantCulture)) .Replace("{N}", north.ToString(CultureInfo.InvariantCulture)) - .Replace("{X}", TileSize.ToString()) - .Replace("{Y}", TileSize.ToString())); + .Replace("{X}", MapProjection.TileSize.ToString()) + .Replace("{Y}", MapProjection.TileSize.ToString())); } private Uri GetLatLonBoundingBoxUri(int x, int y, int zoomLevel) @@ -187,8 +209,8 @@ namespace MapControl .Replace("{s}", south.ToString(CultureInfo.InvariantCulture)) .Replace("{e}", east.ToString(CultureInfo.InvariantCulture)) .Replace("{n}", north.ToString(CultureInfo.InvariantCulture)) - .Replace("{X}", TileSize.ToString()) - .Replace("{Y}", TileSize.ToString())); + .Replace("{X}", MapProjection.TileSize.ToString()) + .Replace("{Y}", MapProjection.TileSize.ToString())); } } } diff --git a/MapControl/ViewportChangedEventArgs.cs b/MapControl/Shared/ViewportChangedEventArgs.cs similarity index 100% rename from MapControl/ViewportChangedEventArgs.cs rename to MapControl/Shared/ViewportChangedEventArgs.cs diff --git a/MapControl/WebMercatorProjection.cs b/MapControl/Shared/WebMercatorProjection.cs similarity index 95% rename from MapControl/WebMercatorProjection.cs rename to MapControl/Shared/WebMercatorProjection.cs index e5c80823..d8e47c6a 100644 --- a/MapControl/WebMercatorProjection.cs +++ b/MapControl/Shared/WebMercatorProjection.cs @@ -3,7 +3,7 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +#if WINDOWS_UWP using Windows.Foundation; #else using System.Windows; @@ -34,7 +34,7 @@ namespace MapControl public override double GetViewportScale(double zoomLevel) { - return base.GetViewportScale(zoomLevel) / MetersPerDegree; + return DegreesToViewportScale(zoomLevel) / MetersPerDegree; } public override Point GetMapScale(Location location) @@ -70,6 +70,8 @@ namespace MapControl public static double LatitudeToY(double latitude) { + var lat = latitude * Math.PI / 180d; + return latitude <= -90d ? double.NegativeInfinity : latitude >= 90d ? double.PositiveInfinity : Math.Log(Math.Tan((latitude + 90d) * Math.PI / 360d)) / Math.PI * 180d; diff --git a/MapControl/WmsImageLayer.cs b/MapControl/Shared/WmsImageLayer.cs similarity index 58% rename from MapControl/WmsImageLayer.cs rename to MapControl/Shared/WmsImageLayer.cs index 717d01cc..3761abf1 100644 --- a/MapControl/WmsImageLayer.cs +++ b/MapControl/Shared/WmsImageLayer.cs @@ -3,10 +3,16 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Threading.Tasks; +#if WINDOWS_UWP +using Windows.Data.Xml.Dom; using Windows.UI.Xaml; #else using System.Windows; +using System.Xml; #endif namespace MapControl @@ -23,15 +29,11 @@ namespace MapControl public static readonly DependencyProperty LayersProperty = DependencyProperty.Register( nameof(Layers), typeof(string), typeof(WmsImageLayer), - new PropertyMetadata(null, (o, e) => ((WmsImageLayer)o).UpdateImage())); + new PropertyMetadata(string.Empty, (o, e) => ((WmsImageLayer)o).UpdateImage())); public static readonly DependencyProperty StylesProperty = DependencyProperty.Register( nameof(Styles), typeof(string), typeof(WmsImageLayer), - new PropertyMetadata(null, (o, e) => ((WmsImageLayer)o).UpdateImage())); - - public static readonly DependencyProperty ParametersProperty = DependencyProperty.Register( - nameof(Parameters), typeof(string), typeof(WmsImageLayer), - new PropertyMetadata(null, (o, e) => ((WmsImageLayer)o).UpdateImage())); + new PropertyMetadata(string.Empty, (o, e) => ((WmsImageLayer)o).UpdateImage())); public static readonly DependencyProperty FormatProperty = DependencyProperty.Register( nameof(Format), typeof(string), typeof(WmsImageLayer), @@ -67,12 +69,6 @@ namespace MapControl set { SetValue(StylesProperty, value); } } - public string Parameters - { - get { return (string)GetValue(ParametersProperty); } - set { SetValue(ParametersProperty, value); } - } - public string Format { get { return (string)GetValue(FormatProperty); } @@ -92,14 +88,60 @@ namespace MapControl return false; } - var version = Version ?? "1.3.0"; - var queryParameters = ParentMap.MapProjection.WmsQueryParameters(boundingBox, version); + var projectionParameters = ParentMap.MapProjection.WmsQueryParameters(boundingBox, Version); - if (string.IsNullOrEmpty(queryParameters)) + if (string.IsNullOrEmpty(projectionParameters)) { return false; } + UpdateImage(GetRequestUri("GetMap" + + "&LAYERS=" + Layers + "&STYLES=" + Styles + "&FORMAT=" + Format + + "&TRANSPARENT=" + (Transparent ? "TRUE" : "FALSE") + "&" + projectionParameters)); + + return true; + } + + public async Task> GetLayerNamesAsync() + { + if (ServerUri == null) + { + return null; + } + + var layerNames = new List(); + + try + { + var document = await XmlDocument.LoadFromUriAsync(GetRequestUri("GetCapabilities")); + + var capability = ChildElements(document.DocumentElement, "Capability").FirstOrDefault(); + if (capability != null) + { + var rootLayer = ChildElements(capability, "Layer").FirstOrDefault(); + if (rootLayer != null) + { + foreach (var layer in ChildElements(rootLayer, "Layer")) + { + var name = ChildElements(layer, "Name").FirstOrDefault(); + if (name != null) + { + layerNames.Add(name.InnerText); + } + } + } + } + } + catch (Exception ex) + { + Debug.WriteLine("WmsImageLayer: {0}: {1}", ServerUri, ex.Message); + } + + return layerNames; + } + + private Uri GetRequestUri(string query) + { var uri = ServerUri.ToString(); if (!uri.EndsWith("?") && !uri.EndsWith("&")) @@ -107,22 +149,14 @@ namespace MapControl uri += "?"; } - uri += "SERVICE=WMS" - + "&VERSION=" + version - + "&REQUEST=GetMap" - + "&LAYERS=" + (Layers ?? string.Empty) - + "&STYLES=" + (Styles ?? string.Empty) - + "&" + queryParameters - + "&FORMAT=" + (Format ?? "image/png") - + "&TRANSPARENT=" + (Transparent ? "TRUE" : "FALSE"); + uri += "SERVICE=WMS&VERSION=" + Version + "&REQUEST=" + query; - if (!string.IsNullOrEmpty(Parameters)) - { - uri += "&" + Parameters; - } + return new Uri(uri.Replace(" ", "%20")); + } - UpdateImage(new Uri(uri.Replace(" ", "%20"))); - return true; + private static IEnumerable ChildElements(XmlElement element, string name) + { + return element.ChildNodes.OfType().Where(e => (string)e.LocalName == name); } } } diff --git a/MapControl/TileImageLoader.Silverlight.cs b/MapControl/TileImageLoader.Silverlight.cs deleted file mode 100644 index 9c613dc9..00000000 --- a/MapControl/TileImageLoader.Silverlight.cs +++ /dev/null @@ -1,53 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Linq; -using System.Diagnostics; -using System.Windows.Media; -using System.Windows.Media.Imaging; - -namespace MapControl -{ - /// - /// Loads map tile images. - /// - public class TileImageLoader : ITileImageLoader - { - public void LoadTiles(MapTileLayer tileLayer) - { - var tileSource = tileLayer.TileSource; - var imageTileSource = tileSource as ImageTileSource; - - foreach (var tile in tileLayer.Tiles.Where(t => t.Pending)) - { - tile.Pending = false; - - try - { - ImageSource image = null; - Uri uri; - - if (imageTileSource != null) - { - image = imageTileSource.LoadImage(tile.XIndex, tile.Y, tile.ZoomLevel); - } - else if ((uri = tileSource.GetUri(tile.XIndex, tile.Y, tile.ZoomLevel)) != null) - { - image = new BitmapImage(uri); - } - - if (image != null) - { - tile.SetImage(image); - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); - } - } - } - } -} diff --git a/MapControl/TileImageLoader.WPF.cs b/MapControl/TileImageLoader.WPF.cs deleted file mode 100644 index f214efcb..00000000 --- a/MapControl/TileImageLoader.WPF.cs +++ /dev/null @@ -1,272 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Collections.Concurrent; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Net; -using System.Runtime.Caching; -using System.Text; -using System.Threading; -using System.Threading.Tasks; -using System.Windows.Media; - -namespace MapControl -{ - /// - /// Loads map tile images and optionally caches them in a System.Runtime.Caching.ObjectCache. - /// - public class TileImageLoader : ITileImageLoader - { - /// - /// Default name of an ObjectCache instance that is assigned to the Cache property. - /// - public const string DefaultCacheName = "TileCache"; - - /// - /// Default folder path where an ObjectCache instance may save cached data. - /// - public static readonly string DefaultCacheFolder = - Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MapControl"); - - /// - /// Default expiration time for cached tile images. Used when no expiration time - /// was transmitted on download. The default value is one day. - /// - public static TimeSpan DefaultCacheExpiration { get; set; } - - /// - /// Minimum expiration time for cached tile images. Used when an unnecessarily small expiration time - /// was transmitted on download (e.g. Cache-Control: max-age=0). The default value is one hour. - /// - public static TimeSpan MinimumCacheExpiration { get; set; } - - /// - /// The ObjectCache used to cache tile images. The default is MemoryCache.Default. - /// - public static ObjectCache Cache { get; set; } - - /// - /// Optional value to be used for the HttpWebRequest.UserAgent property. The default is null. - /// - public static string HttpUserAgent { get; set; } - - static TileImageLoader() - { - DefaultCacheExpiration = TimeSpan.FromDays(1); - MinimumCacheExpiration = TimeSpan.FromHours(1); - Cache = MemoryCache.Default; - } - - private readonly ConcurrentStack pendingTiles = new ConcurrentStack(); - private int taskCount; - - public void LoadTiles(MapTileLayer tileLayer) - { - pendingTiles.Clear(); - - var tiles = tileLayer.Tiles.Where(t => t.Pending); - - if (tiles.Any()) - { - pendingTiles.PushRange(tiles.Reverse().ToArray()); - - var tileSource = tileLayer.TileSource; - var sourceName = tileLayer.SourceName; - var maxDownloads = tileLayer.MaxParallelDownloads; - - while (taskCount < Math.Min(pendingTiles.Count, maxDownloads)) - { - Interlocked.Increment(ref taskCount); - - Task.Run(() => - { - LoadPendingTiles(tileSource, sourceName); - - Interlocked.Decrement(ref taskCount); - }); - } - } - } - - private void LoadPendingTiles(TileSource tileSource, string sourceName) - { - var imageTileSource = tileSource as ImageTileSource; - Tile tile; - - while (pendingTiles.TryPop(out tile)) - { - tile.Pending = false; - - try - { - ImageSource image = null; - Uri uri; - - if (imageTileSource != null) - { - image = imageTileSource.LoadImage(tile.XIndex, tile.Y, tile.ZoomLevel); - } - else if ((uri = tileSource.GetUri(tile.XIndex, tile.Y, tile.ZoomLevel)) != null) - { - image = LoadImage(uri, sourceName, tile.XIndex, tile.Y, tile.ZoomLevel); - } - - if (image != null) - { - tile.SetImage(image); - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); - } - } - } - - private ImageSource LoadImage(Uri uri, string sourceName, int x, int y, int zoomLevel) - { - ImageSource image = null; - - try - { - if (!uri.IsAbsoluteUri) - { - image = BitmapSourceHelper.FromFile(uri.OriginalString); - } - else if (uri.Scheme == "file") - { - image = BitmapSourceHelper.FromFile(uri.LocalPath); - } - else if (Cache == null || string.IsNullOrEmpty(sourceName)) - { - image = DownloadImage(uri, null); - } - else - { - var cacheKey = string.Format("{0}/{1}/{2}/{3}", sourceName, zoomLevel, x, y); - - if (!GetCachedImage(cacheKey, ref image)) - { - // Either no cached image was found or expiration time has expired. - // If download fails use possibly cached but expired image anyway. - image = DownloadImage(uri, cacheKey); - } - } - } - catch (WebException ex) - { - Debug.WriteLine("{0}: {1}: {2}", uri, ex.Status, ex.Message); - } - catch (Exception ex) - { - Debug.WriteLine("{0}: {1}", uri, ex.Message); - } - - return image; - } - - private static ImageSource DownloadImage(Uri uri, string cacheKey) - { - ImageSource image = null; - var request = WebRequest.CreateHttp(uri); - - if (HttpUserAgent != null) - { - request.UserAgent = HttpUserAgent; - } - - using (var response = (HttpWebResponse)request.GetResponse()) - { - if (response.Headers["X-VE-Tile-Info"] != "no-tile") // set by Bing Maps - { - using (var responseStream = response.GetResponseStream()) - using (var memoryStream = new MemoryStream()) - { - responseStream.CopyTo(memoryStream); - memoryStream.Seek(0, SeekOrigin.Begin); - image = BitmapSourceHelper.FromStream(memoryStream); - - if (cacheKey != null) - { - SetCachedImage(cacheKey, memoryStream, GetExpiration(response.Headers)); - } - } - } - } - - return image; - } - - private static bool GetCachedImage(string cacheKey, ref ImageSource image) - { - var result = false; - var buffer = Cache.Get(cacheKey) as byte[]; - - if (buffer != null) - { - try - { - using (var memoryStream = new MemoryStream(buffer)) - { - image = BitmapSourceHelper.FromStream(memoryStream); - } - - DateTime expiration = DateTime.MinValue; - - if (buffer.Length >= 16 && Encoding.ASCII.GetString(buffer, buffer.Length - 16, 8) == "EXPIRES:") - { - expiration = new DateTime(BitConverter.ToInt64(buffer, buffer.Length - 8), DateTimeKind.Utc); - } - - result = expiration > DateTime.UtcNow; - } - catch (Exception ex) - { - Debug.WriteLine("{0}: {1}", cacheKey, ex.Message); - } - } - - return result; - } - - private static void SetCachedImage(string cacheKey, MemoryStream memoryStream, DateTime expiration) - { - memoryStream.Seek(0, SeekOrigin.End); - memoryStream.Write(Encoding.ASCII.GetBytes("EXPIRES:"), 0, 8); - memoryStream.Write(BitConverter.GetBytes(expiration.Ticks), 0, 8); - - Cache.Set(cacheKey, memoryStream.ToArray(), new CacheItemPolicy { AbsoluteExpiration = expiration }); - } - - private static DateTime GetExpiration(WebHeaderCollection headers) - { - var expiration = DefaultCacheExpiration; - var cacheControl = headers["Cache-Control"]; - - if (cacheControl != null) - { - int maxAgeValue; - var maxAgeDirective = cacheControl - .Split(new char[] { ',', ' ' }, StringSplitOptions.RemoveEmptyEntries) - .FirstOrDefault(s => s.StartsWith("max-age=")); - - if (maxAgeDirective != null && - int.TryParse(maxAgeDirective.Substring(8), out maxAgeValue)) - { - expiration = TimeSpan.FromSeconds(maxAgeValue); - - if (expiration < MinimumCacheExpiration) - { - expiration = MinimumCacheExpiration; - } - } - } - - return DateTime.UtcNow.Add(expiration); - } - } -} diff --git a/MapControl/TileImageLoader.WinRT.cs b/MapControl/TileImageLoader.WinRT.cs deleted file mode 100644 index 712cab76..00000000 --- a/MapControl/TileImageLoader.WinRT.cs +++ /dev/null @@ -1,295 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.Collections.Concurrent; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Threading; -using System.Threading.Tasks; -using Windows.Storage; -using Windows.Storage.Streams; -using Windows.UI.Core; -using Windows.UI.Xaml.Media.Imaging; -using Windows.Web.Http; -using Windows.Web.Http.Filters; - -namespace MapControl -{ - /// - /// Loads map tile images and optionally caches them in a IImageCache. - /// - public class TileImageLoader : ITileImageLoader - { - /// - /// Default name of an IImageCache instance that is assigned to the Cache property. - /// - public const string DefaultCacheName = "TileCache"; - - /// - /// Default StorageFolder where an IImageCache instance may save cached data. - /// - public static readonly StorageFolder DefaultCacheFolder = ApplicationData.Current.TemporaryFolder; - - /// - /// Default expiration time for cached tile images. Used when no expiration time - /// was transmitted on download. The default value is one day. - /// - public static TimeSpan DefaultCacheExpiration { get; set; } - - /// - /// Minimum expiration time for cached tile images. Used when an unnecessarily small expiration time - /// was transmitted on download (e.g. Cache-Control: max-age=0). The default value is one hour. - /// - public static TimeSpan MinimumCacheExpiration { get; set; } - - /// - /// The IImageCache implementation used to cache tile images. The default is null. - /// - public static Caching.IImageCache Cache; - - static TileImageLoader() - { - DefaultCacheExpiration = TimeSpan.FromDays(1); - MinimumCacheExpiration = TimeSpan.FromHours(1); - } - - private readonly ConcurrentStack pendingTiles = new ConcurrentStack(); - private int taskCount; - - public void LoadTiles(MapTileLayer tileLayer) - { - pendingTiles.Clear(); - - var tiles = tileLayer.Tiles.Where(t => t.Pending); - - if (tiles.Any()) - { - var tileSource = tileLayer.TileSource; - var imageTileSource = tileSource as ImageTileSource; - - if (imageTileSource != null) - { - LoadTiles(tiles, imageTileSource); - } - else - { - pendingTiles.PushRange(tiles.Reverse().ToArray()); - - var sourceName = tileLayer.SourceName; - var maxDownloads = tileLayer.MaxParallelDownloads; - - while (taskCount < Math.Min(pendingTiles.Count, maxDownloads)) - { - Interlocked.Increment(ref taskCount); - - Task.Run(async () => - { - await LoadPendingTiles(tileSource, sourceName); - - Interlocked.Decrement(ref taskCount); - }); - } - } - } - } - - private void LoadTiles(IEnumerable tiles, ImageTileSource tileSource) - { - foreach (var tile in tiles) - { - tile.Pending = false; - - try - { - var image = tileSource.LoadImage(tile.XIndex, tile.Y, tile.ZoomLevel); - - if (image != null) - { - tile.SetImage(image); - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); - } - } - } - - private async Task LoadPendingTiles(TileSource tileSource, string sourceName) - { - Tile tile; - - while (pendingTiles.TryPop(out tile)) - { - tile.Pending = false; - - try - { - var uri = tileSource.GetUri(tile.XIndex, tile.Y, tile.ZoomLevel); - - if (uri != null) - { - if (!uri.IsAbsoluteUri) - { - await LoadImageFromFile(tile, uri.OriginalString); - } - else if (uri.Scheme == "file") - { - await LoadImageFromFile(tile, uri.LocalPath); - } - else if (Cache == null || sourceName == null) - { - await DownloadImage(tile, uri, null); - } - else - { - var extension = Path.GetExtension(uri.LocalPath); - - if (string.IsNullOrEmpty(extension) || extension == ".jpeg") - { - extension = ".jpg"; - } - - var cacheKey = string.Format(@"{0}\{1}\{2}\{3}{4}", sourceName, tile.ZoomLevel, tile.XIndex, tile.Y, extension); - var cacheItem = await Cache.GetAsync(cacheKey); - var loaded = false; - - if (cacheItem == null || cacheItem.Expiration <= DateTime.UtcNow) - { - loaded = await DownloadImage(tile, uri, cacheKey); - } - - if (!loaded && cacheItem != null && cacheItem.Buffer != null) - { - using (var stream = new InMemoryRandomAccessStream()) - { - await stream.WriteAsync(cacheItem.Buffer); - await stream.FlushAsync(); - stream.Seek(0); - - await LoadImageFromStream(tile, stream); - } - } - } - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}/{1}/{2}: {3}", tile.ZoomLevel, tile.XIndex, tile.Y, ex.Message); - } - } - } - - private async Task DownloadImage(Tile tile, Uri uri, string cacheKey) - { - try - { - using (var httpClient = new HttpClient(new HttpBaseProtocolFilter { AllowAutoRedirect = false })) - using (var response = await httpClient.GetAsync(uri)) - { - if (response.IsSuccessStatusCode) - { - string tileInfo; - - if (!response.Headers.TryGetValue("X-VE-Tile-Info", out tileInfo) || tileInfo != "no-tile") // set by Bing Maps - { - await LoadImageFromHttpResponse(response, tile, cacheKey); - } - - return true; - } - - Debug.WriteLine("{0}: {1} {2}", uri, (int)response.StatusCode, response.ReasonPhrase); - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}: {1}", uri, ex.Message); - } - - return false; - } - - private async Task LoadImageFromHttpResponse(HttpResponseMessage response, Tile tile, string cacheKey) - { - using (var stream = new InMemoryRandomAccessStream()) - { - using (var content = response.Content) - { - await content.WriteToStreamAsync(stream); - } - - await stream.FlushAsync(); - stream.Seek(0); - - await LoadImageFromStream(tile, stream); - - if (cacheKey != null) - { - var buffer = new Windows.Storage.Streams.Buffer((uint)stream.Size); - - stream.Seek(0); - await stream.ReadAsync(buffer, buffer.Capacity, InputStreamOptions.None); - - var expiration = DefaultCacheExpiration; - - if (response.Headers.CacheControl.MaxAge.HasValue) - { - expiration = response.Headers.CacheControl.MaxAge.Value; - - if (expiration < MinimumCacheExpiration) - { - expiration = MinimumCacheExpiration; - } - } - - await Cache.SetAsync(cacheKey, buffer, DateTime.UtcNow.Add(expiration)); - } - } - } - - private async Task LoadImageFromFile(Tile tile, string path) - { - try - { - var file = await StorageFile.GetFileFromPathAsync(path); - - using (var stream = await file.OpenReadAsync()) - { - await LoadImageFromStream(tile, stream); - } - } - catch (Exception ex) - { - Debug.WriteLine("{0}: {1}", path, ex.Message); - } - } - - private async Task LoadImageFromStream(Tile tile, IRandomAccessStream stream) - { - var tcs = new TaskCompletionSource(); - - await tile.Image.Dispatcher.RunAsync(CoreDispatcherPriority.Low, async () => - { - try - { - var image = new BitmapImage(); - await image.SetSourceAsync(stream); - tile.SetImage(image, true, false); - - tcs.SetResult(null); - } - catch (Exception ex) - { - tcs.SetException(ex); - } - }); - - await tcs.Task; - } - } -} diff --git a/MapControl/TileSourceConverter.cs b/MapControl/TileSourceConverter.cs deleted file mode 100644 index fe9b3a39..00000000 --- a/MapControl/TileSourceConverter.cs +++ /dev/null @@ -1,28 +0,0 @@ -// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control -// © 2017 Clemens Fischer -// Licensed under the Microsoft Public License (Ms-PL) - -using System; -using System.ComponentModel; -using System.Globalization; - -namespace MapControl -{ - public class TileSourceConverter : TypeConverter - { - public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - { - return sourceType == typeof(string); - } - - public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) - { - return new TileSource { UriFormat = value as string }; - } - } - - [TypeConverter(typeof(TileSourceConverter))] - public partial class TileSource - { - } -} diff --git a/MapControl/Extensions.WinRT.cs b/MapControl/UWP/Extensions.UWP.cs similarity index 88% rename from MapControl/Extensions.WinRT.cs rename to MapControl/UWP/Extensions.UWP.cs index b12db969..438c1ebb 100644 --- a/MapControl/Extensions.WinRT.cs +++ b/MapControl/UWP/Extensions.UWP.cs @@ -2,10 +2,8 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -using System; using System.Collections.Generic; using Windows.Foundation; -using Windows.UI.Core; using Windows.UI.Xaml; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media.Animation; @@ -14,11 +12,6 @@ namespace MapControl { internal static class Extensions { - public static IAsyncAction BeginInvoke(this CoreDispatcher dispatcher, Action action) - { - return dispatcher.RunAsync(CoreDispatcherPriority.Normal, new DispatchedHandler(action)); - } - public static Point Transform(this GeneralTransform transform, Point point) { return transform.TransformPoint(point); @@ -47,6 +40,7 @@ namespace MapControl private static void BeginAnimation(DependencyObject obj, DependencyProperty property, Timeline animation) { string propertyName; + if (properties.TryGetValue(property, out propertyName)) { Storyboard.SetTargetProperty(animation, propertyName); diff --git a/MapControl/ImageCache.WinRT.cs b/MapControl/UWP/ImageCache.UWP.cs similarity index 100% rename from MapControl/ImageCache.WinRT.cs rename to MapControl/UWP/ImageCache.UWP.cs diff --git a/MapControl/UWP/ImageFileCache.UWP.cs b/MapControl/UWP/ImageFileCache.UWP.cs new file mode 100644 index 00000000..8825cf66 --- /dev/null +++ b/MapControl/UWP/ImageFileCache.UWP.cs @@ -0,0 +1,99 @@ +// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control +// © 2017 Clemens Fischer +// Licensed under the Microsoft Public License (Ms-PL) + +using System; +using System.Diagnostics; +using System.IO; +using System.Threading.Tasks; +using Windows.Storage; +using Windows.Storage.Streams; + +namespace MapControl.Caching +{ + public class ImageFileCache : IImageCache + { + private StorageFolder rootFolder; + + public ImageFileCache(StorageFolder rootFolder) + { + if (rootFolder == null) + { + throw new ArgumentNullException("The parameter rootFolder must not be null."); + } + + this.rootFolder = rootFolder; + + Debug.WriteLine("Created ImageFileCache in " + rootFolder.Path); + } + + public virtual async Task GetAsync(string key) + { + string path = null; + + try + { + path = Path.Combine(key.Split('\\', '/', ':', ';')); + } + catch (Exception ex) + { + Debug.WriteLine("ImageFileCache: Invalid key {0}: {1}", key, ex.Message); + } + + if (path != null) + { + var item = await rootFolder.TryGetItemAsync(path); + + if (item != null && item.IsOfType(StorageItemTypes.File)) + { + var file = (StorageFile)item; + //Debug.WriteLine("ImageFileCache: Reading " + file.Path); + + try + { + return new ImageCacheItem + { + Buffer = await FileIO.ReadBufferAsync(file), + Expiration = (await file.Properties.GetImagePropertiesAsync()).DateTaken.UtcDateTime + }; + } + catch (Exception ex) + { + Debug.WriteLine("ImageFileCache: Reading {0}: {1}", file.Path, ex.Message); + } + } + } + + return null; + } + + public virtual async Task SetAsync(string key, IBuffer buffer, DateTime expiration) + { + var paths = key.Split('\\', '/', ':', ';'); + + try + { + var folder = rootFolder; + + for (int i = 0; i < paths.Length - 1; i++) + { + folder = await folder.CreateFolderAsync(paths[i], CreationCollisionOption.OpenIfExists); + } + + var file = await folder.CreateFileAsync(paths[paths.Length - 1], CreationCollisionOption.ReplaceExisting); + //Debug.WriteLine("ImageFileCache: Writing {0}, Expires {1}", file.Path, expiration.ToLocalTime()); + + await FileIO.WriteBufferAsync(file, buffer); + + // Store expiration date in ImageProperties.DateTaken + var properties = await file.Properties.GetImagePropertiesAsync(); + properties.DateTaken = expiration; + await properties.SavePropertiesAsync(); + } + catch (Exception ex) + { + Debug.WriteLine("ImageFileCache: Writing {0}\\{1}: {2}", rootFolder.Path, string.Join("\\", paths), ex.Message); + } + } + } +} diff --git a/MapControl/Map.WinRT.cs b/MapControl/UWP/Map.UWP.cs similarity index 100% rename from MapControl/Map.WinRT.cs rename to MapControl/UWP/Map.UWP.cs diff --git a/MapControl/MapBase.Silverlight.WinRT.cs b/MapControl/UWP/MapBase.UWP.cs similarity index 97% rename from MapControl/MapBase.Silverlight.WinRT.cs rename to MapControl/UWP/MapBase.UWP.cs index 3ee6a594..fe16760c 100644 --- a/MapControl/MapBase.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapBase.UWP.cs @@ -2,15 +2,10 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.Foundation; using Windows.UI; using Windows.UI.Xaml; using Windows.UI.Xaml.Media; -#else -using System.Windows; -using System.Windows.Media; -#endif namespace MapControl { diff --git a/MapControl/UWP/MapControl.UWP.csproj b/MapControl/UWP/MapControl.UWP.csproj new file mode 100644 index 00000000..3b674d9e --- /dev/null +++ b/MapControl/UWP/MapControl.UWP.csproj @@ -0,0 +1,180 @@ + + + + + Debug + AnyCPU + {951BC5D2-D653-42D9-9A91-21DC50DE0182} + Library + Properties + MapControl + MapControl.UWP + en-US + UAP + 10.0.10240.0 + 10.0.10240.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + AnyCPU + true + full + false + ..\bin\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + true + + + AnyCPU + none + true + ..\bin\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + true + + + + + MapControl.snk + + + + + + AzimuthalEquidistantProjection.cs + + + AzimuthalProjection.cs + + + BingMapsTileLayer.cs + + + BingMapsTileSource.cs + + + BoundingBox.cs + + + CenteredBoundingBox.cs + + + EquirectangularProjection.cs + + + GnomonicProjection.cs + + + HyperlinkText.cs + + + Location.cs + + + LocationCollection.cs + + + MapBase.cs + + + MapGraticule.cs + + + MapImageLayer.cs + + + MapOverlay.cs + + + MapPanel.cs + + + MapPath.cs + + + MapPolyline.cs + + + MapProjection.cs + + + MapTileLayer.cs + + + OrthographicProjection.cs + + + StereographicProjection.cs + + + Tile.cs + + + TileGrid.cs + + + TileImageLoader.cs + + + TileSource.cs + + + ViewportChangedEventArgs.cs + + + WebMercatorProjection.cs + + + WmsImageLayer.cs + + + + + + + + + + + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + + 14.0 + + + true + + + ..\..\MapControl.snk + + + + \ No newline at end of file diff --git a/MapControl/MapGraticule.Silverlight.WinRT.cs b/MapControl/UWP/MapGraticule.UWP.cs similarity index 98% rename from MapControl/MapGraticule.Silverlight.WinRT.cs rename to MapControl/UWP/MapGraticule.UWP.cs index 5afc34a0..7d2de1e3 100644 --- a/MapControl/MapGraticule.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapGraticule.UWP.cs @@ -3,20 +3,12 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE using Windows.Foundation; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Shapes; using Windows.UI.Xaml.Data; -#else -using System.Windows; -using System.Windows.Controls; -using System.Windows.Media; -using System.Windows.Shapes; -using System.Windows.Data; -#endif namespace MapControl { diff --git a/MapControl/MapImageLayer.Silverlight.WinRT.cs b/MapControl/UWP/MapImageLayer.UWP.cs similarity index 62% rename from MapControl/MapImageLayer.Silverlight.WinRT.cs rename to MapControl/UWP/MapImageLayer.UWP.cs index cfe1183d..aa2141e6 100644 --- a/MapControl/MapImageLayer.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapImageLayer.UWP.cs @@ -3,15 +3,9 @@ // Licensed under the Microsoft Public License (Ms-PL) using System; -#if NETFX_CORE using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Media.Imaging; -#else -using System.Windows; -using System.Windows.Controls; -using System.Windows.Media.Imaging; -#endif namespace MapControl { @@ -19,14 +13,14 @@ namespace MapControl { protected void UpdateImage(Uri uri) { - UpdateImage(new BitmapImage(uri)); + UpdateImage(uri != null ? new BitmapImage(uri) : null); } - protected void UpdateImage(BitmapSource bitmap) + protected void UpdateImage(BitmapSource bitmapSource) { - SetTopImage(bitmap); + SetTopImage(bitmapSource); - var bitmapImage = bitmap as BitmapImage; + var bitmapImage = bitmapSource as BitmapImage; if (bitmapImage != null) { @@ -41,18 +35,20 @@ namespace MapControl private void BitmapImageOpened(object sender, RoutedEventArgs e) { - var bitmap = (BitmapImage)sender; - bitmap.ImageOpened -= BitmapImageOpened; - bitmap.ImageFailed -= BitmapImageFailed; + var bitmapImage = (BitmapImage)sender; + + bitmapImage.ImageOpened -= BitmapImageOpened; + bitmapImage.ImageFailed -= BitmapImageFailed; SwapImages(); } private void BitmapImageFailed(object sender, ExceptionRoutedEventArgs e) { - var bitmap = (BitmapImage)sender; - bitmap.ImageOpened -= BitmapImageOpened; - bitmap.ImageFailed -= BitmapImageFailed; + var bitmapImage = (BitmapImage)sender; + + bitmapImage.ImageOpened -= BitmapImageOpened; + bitmapImage.ImageFailed -= BitmapImageFailed; ((Image)Children[topImageIndex]).Source = null; SwapImages(); diff --git a/MapControl/MapItem.Silverlight.WinRT.cs b/MapControl/UWP/MapItem.UWP.cs similarity index 92% rename from MapControl/MapItem.Silverlight.WinRT.cs rename to MapControl/UWP/MapItem.UWP.cs index 530131c1..82189b56 100644 --- a/MapControl/MapItem.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapItem.UWP.cs @@ -2,11 +2,7 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.UI.Xaml.Controls; -#else -using System.Windows.Controls; -#endif namespace MapControl { diff --git a/MapControl/MapItemsControl.Silverlight.WinRT.cs b/MapControl/UWP/MapItemsControl.UWP.cs similarity index 91% rename from MapControl/MapItemsControl.Silverlight.WinRT.cs rename to MapControl/UWP/MapItemsControl.UWP.cs index aca2454a..a01a9d25 100644 --- a/MapControl/MapItemsControl.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapItemsControl.UWP.cs @@ -2,13 +2,8 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; -#else -using System.Windows; -using System.Windows.Controls; -#endif namespace MapControl { diff --git a/MapControl/MapOverlay.Silverlight.WinRT.cs b/MapControl/UWP/MapOverlay.UWP.cs similarity index 91% rename from MapControl/MapOverlay.Silverlight.WinRT.cs rename to MapControl/UWP/MapOverlay.UWP.cs index 391f67ae..740f43fe 100644 --- a/MapControl/MapOverlay.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapOverlay.UWP.cs @@ -2,24 +2,13 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.UI.Text; using Windows.UI.Xaml; using Windows.UI.Xaml.Data; using Windows.UI.Xaml.Media; -#else -using System.Windows; -using System.Windows.Data; -using System.Windows.Media; -#endif namespace MapControl { -#if NETFX_CORE - class FontStyles { public const FontStyle Normal = FontStyle.Normal; } - class FontStretches { public const FontStretch Normal = FontStretch.Normal; } -#endif - public partial class MapOverlay { public static readonly DependencyProperty FontSizeProperty = DependencyProperty.Register( @@ -29,10 +18,10 @@ namespace MapControl nameof(FontFamily), typeof(FontFamily), typeof(MapOverlay), new PropertyMetadata(null)); public static readonly DependencyProperty FontStyleProperty = DependencyProperty.Register( - nameof(FontStyle), typeof(FontStyle), typeof(MapOverlay), new PropertyMetadata(FontStyles.Normal)); + nameof(FontStyle), typeof(FontStyle), typeof(MapOverlay), new PropertyMetadata(FontStyle.Normal)); public static readonly DependencyProperty FontStretchProperty = DependencyProperty.Register( - nameof(FontStretch), typeof(FontStretch), typeof(MapOverlay), new PropertyMetadata(FontStretches.Normal)); + nameof(FontStretch), typeof(FontStretch), typeof(MapOverlay), new PropertyMetadata(FontStretch.Normal)); public static readonly DependencyProperty FontWeightProperty = DependencyProperty.Register( nameof(FontWeight), typeof(FontWeight), typeof(MapOverlay), new PropertyMetadata(FontWeights.Normal)); diff --git a/MapControl/MapPanel.Silverlight.WinRT.cs b/MapControl/UWP/MapPanel.UWP.cs similarity index 96% rename from MapControl/MapPanel.Silverlight.WinRT.cs rename to MapControl/UWP/MapPanel.UWP.cs index 16539102..50b60b47 100644 --- a/MapControl/MapPanel.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapPanel.UWP.cs @@ -2,13 +2,8 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.UI.Xaml; using Windows.UI.Xaml.Media; -#else -using System.Windows; -using System.Windows.Media; -#endif namespace MapControl { diff --git a/MapControl/MapPath.Silverlight.WinRT.cs b/MapControl/UWP/MapPath.UWP.cs similarity index 62% rename from MapControl/MapPath.Silverlight.WinRT.cs rename to MapControl/UWP/MapPath.UWP.cs index cec3d00c..43335bd6 100644 --- a/MapControl/MapPath.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapPath.UWP.cs @@ -2,15 +2,9 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.Foundation; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Shapes; -#else -using System.Windows; -using System.Windows.Media; -using System.Windows.Shapes; -#endif namespace MapControl { @@ -23,7 +17,7 @@ namespace MapControl MapPanel.AddParentMapHandlers(this); } - protected override Size MeasureOverride(Size constraint) + protected override Size MeasureOverride(Size availableSize) { if (Stretch != Stretch.None) { @@ -46,12 +40,7 @@ namespace MapControl } } - // Path.MeasureOverride in Windows Runtime sometimes returns an empty Size, - // whereas in Silverlight it occasionally throws an ArgumentException, - // apparently because it tries to create a Size from negative width or height, - // which result from a transformed Geometry. - // In either case it seems to be sufficient to simply return a non-zero size. - return new Size(1, 1); + return new Size(); } } } diff --git a/MapControl/MapPolyline.Silverlight.WinRT.cs b/MapControl/UWP/MapPolyline.UWP.cs similarity index 81% rename from MapControl/MapPolyline.Silverlight.WinRT.cs rename to MapControl/UWP/MapPolyline.UWP.cs index c04b8e73..77e6f260 100644 --- a/MapControl/MapPolyline.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapPolyline.UWP.cs @@ -2,14 +2,10 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) +using System.Collections.Generic; using System.Linq; -#if NETFX_CORE using Windows.UI.Xaml; using Windows.UI.Xaml.Media; -#else -using System.Windows; -using System.Windows.Media; -#endif namespace MapControl { @@ -19,11 +15,21 @@ namespace MapControl nameof(FillRule), typeof(FillRule), typeof(MapPolyline), new PropertyMetadata(FillRule.EvenOdd, (o, e) => ((PathGeometry)((MapPolyline)o).Data).FillRule = (FillRule)e.NewValue)); + public MapPolyline() { Data = new PathGeometry(); } + /// + /// Gets or sets the locations that define the polyline points. + /// + public IEnumerable Locations + { + get { return (IEnumerable)GetValue(LocationsProperty); } + set { SetValue(LocationsProperty, value); } + } + protected override void UpdateData() { var geometry = (PathGeometry)Data; diff --git a/MapControl/MapTileLayer.Silverlight.WinRT.cs b/MapControl/UWP/MapTileLayer.UWP.cs similarity index 83% rename from MapControl/MapTileLayer.Silverlight.WinRT.cs rename to MapControl/UWP/MapTileLayer.UWP.cs index d8b05e29..ca564c9e 100644 --- a/MapControl/MapTileLayer.Silverlight.WinRT.cs +++ b/MapControl/UWP/MapTileLayer.UWP.cs @@ -2,8 +2,11 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) +using Windows.UI.Xaml.Markup; + namespace MapControl { + [ContentProperty(Name = "TileSource")] public partial class MapTileLayer { partial void Initialize() diff --git a/MapControl/UWP/MatrixEx.UWP.cs b/MapControl/UWP/MatrixEx.UWP.cs new file mode 100644 index 00000000..19ee5793 --- /dev/null +++ b/MapControl/UWP/MatrixEx.UWP.cs @@ -0,0 +1,87 @@ +// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control +// © 2017 Clemens Fischer +// Licensed under the Microsoft Public License (Ms-PL) + +using System; +using Windows.UI.Xaml.Media; + +namespace MapControl +{ + internal static class MatrixEx + { + /// + /// Used in MapProjection and MapTileLayer. + /// + public static Matrix TranslateScaleRotateTranslate( + double translation1X, double translation1Y, + double scaleX, double scaleY, double rotationAngle, + double translation2X, double translation2Y) + { + var matrix = new Matrix( + scaleX, 0d, 0d, scaleY, + scaleX * translation1X, + scaleY * translation1Y); + + if (rotationAngle != 0d) + { + rotationAngle = (rotationAngle % 360d) / 180d * Math.PI; + + var cos = Math.Cos(rotationAngle); + var sin = Math.Sin(rotationAngle); + + matrix = new Matrix( + matrix.M11 * cos - matrix.M12 * sin, + matrix.M11 * sin + matrix.M12 * cos, + matrix.M21 * cos - matrix.M22 * sin, + matrix.M21 * sin + matrix.M22 * cos, + cos * matrix.OffsetX - sin * matrix.OffsetY, + sin * matrix.OffsetX + cos * matrix.OffsetY); + } + + matrix.OffsetX += translation2X; + matrix.OffsetY += translation2Y; + + return matrix; + } + + public static Matrix TranslateScaleRotateTranslate_( + double translation1X, double translation1Y, + double scaleX, double scaleY, double rotationAngle, + double translation2X, double translation2Y) + { + var m11 = scaleX; + var m12 = 0d; + var m21 = 0d; + var m22 = scaleY; + var offsetX = scaleX * translation1X; + var offsetY = scaleY * translation1Y; + + if (rotationAngle != 0d) + { + rotationAngle = (rotationAngle % 360d) / 180d * Math.PI; + + var cos = Math.Cos(rotationAngle); + var sin = Math.Sin(rotationAngle); + + var _m11 = m11; + var _m12 = m12; + var _m21 = m21; + var _m22 = m22; + var _offsetX = offsetX; + var _offsetY = offsetY; + + m11 = _m11 * cos - _m12 * sin; + m12 = _m11 * sin + _m12 * cos; + m21 = _m21 * cos - _m22 * sin; + m22 = _m21 * sin + _m22 * cos; + offsetX = cos * _offsetX - sin * _offsetY; + offsetY = sin * _offsetX + cos * _offsetY; + } + + offsetX += translation2X; + offsetY += translation2Y; + + return new Matrix(m11, m12, m21, m22, offsetX, offsetY); + } + } +} diff --git a/MapControl/WinRT/Properties/AssemblyInfo.cs b/MapControl/UWP/Properties/AssemblyInfo.cs similarity index 62% rename from MapControl/WinRT/Properties/AssemblyInfo.cs rename to MapControl/UWP/Properties/AssemblyInfo.cs index a443f499..b839809d 100644 --- a/MapControl/WinRT/Properties/AssemblyInfo.cs +++ b/MapControl/UWP/Properties/AssemblyInfo.cs @@ -1,14 +1,14 @@ using System.Reflection; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("XAML Map Control (WinRT)")] -[assembly: AssemblyDescription("XAML Map Control Library for Windows Runtime")] +[assembly: AssemblyTitle("XAML Map Control for UWP")] +[assembly: AssemblyDescription("XAML Map Control Library for UWP")] [assembly: AssemblyProduct("XAML Map Control")] [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("© 2017 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("4.0.0")] +[assembly: AssemblyFileVersion("4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/MapControl/UWP/Properties/MapControl.UWP.rd.xml b/MapControl/UWP/Properties/MapControl.UWP.rd.xml new file mode 100644 index 00000000..5ab732e0 --- /dev/null +++ b/MapControl/UWP/Properties/MapControl.UWP.rd.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/MapControl/Pushpin.Silverlight.WinRT.cs b/MapControl/UWP/Pushpin.UWP.cs similarity index 92% rename from MapControl/Pushpin.Silverlight.WinRT.cs rename to MapControl/UWP/Pushpin.UWP.cs index 4446a6fb..2577f4be 100644 --- a/MapControl/Pushpin.Silverlight.WinRT.cs +++ b/MapControl/UWP/Pushpin.UWP.cs @@ -2,11 +2,7 @@ // © 2017 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) -#if NETFX_CORE using Windows.UI.Xaml.Controls; -#else -using System.Windows.Controls; -#endif namespace MapControl { diff --git a/MapControl/WinRT/Themes/Generic.xaml b/MapControl/UWP/Themes/Generic.xaml similarity index 99% rename from MapControl/WinRT/Themes/Generic.xaml rename to MapControl/UWP/Themes/Generic.xaml index e25d0977..ddccf0b0 100644 --- a/MapControl/WinRT/Themes/Generic.xaml +++ b/MapControl/UWP/Themes/Generic.xaml @@ -1,4 +1,4 @@ - - - - - -
-
- - - - - - - - Get Microsoft Silverlight - -
-
- - diff --git a/SampleApps/SilverlightApplication.Web/SilverlightApplicationTestPage.html b/SampleApps/SilverlightApplication.Web/SilverlightApplicationTestPage.html deleted file mode 100644 index ae8695d0..00000000 --- a/SampleApps/SilverlightApplication.Web/SilverlightApplicationTestPage.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - SilverlightApplication - - - - - -
-
- - - - - - - - Get Microsoft Silverlight - -
-
- - diff --git a/SampleApps/SilverlightApplication.Web/Web.Debug.config b/SampleApps/SilverlightApplication.Web/Web.Debug.config deleted file mode 100644 index 2e302f9f..00000000 --- a/SampleApps/SilverlightApplication.Web/Web.Debug.config +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication.Web/Web.Release.config b/SampleApps/SilverlightApplication.Web/Web.Release.config deleted file mode 100644 index c3584446..00000000 --- a/SampleApps/SilverlightApplication.Web/Web.Release.config +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication.Web/Web.config b/SampleApps/SilverlightApplication.Web/Web.config deleted file mode 100644 index dc645b36..00000000 --- a/SampleApps/SilverlightApplication.Web/Web.config +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication/App.xaml b/SampleApps/SilverlightApplication/App.xaml deleted file mode 100644 index 6a0fe86c..00000000 --- a/SampleApps/SilverlightApplication/App.xaml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/SampleApps/SilverlightApplication/App.xaml.cs b/SampleApps/SilverlightApplication/App.xaml.cs deleted file mode 100644 index aa5894cc..00000000 --- a/SampleApps/SilverlightApplication/App.xaml.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Windows; - -namespace SilverlightApplication -{ - public partial class App : Application - { - - public App() - { - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - this.RootVisual = new MainPage(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - if (!System.Diagnostics.Debugger.IsAttached) - { - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/SampleApps/SilverlightApplication/MainPage.xaml b/SampleApps/SilverlightApplication/MainPage.xaml deleted file mode 100644 index 7d591726..00000000 --- a/SampleApps/SilverlightApplication/MainPage.xaml +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SampleApps/SilverlightApplication/MainPage.xaml.cs b/SampleApps/SilverlightApplication/MainPage.xaml.cs deleted file mode 100644 index 85175e66..00000000 --- a/SampleApps/SilverlightApplication/MainPage.xaml.cs +++ /dev/null @@ -1,59 +0,0 @@ -using System; -using System.Globalization; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Input; -using MapControl; -using ViewModel; - -namespace SilverlightApplication -{ - public partial class MainPage : UserControl - { - public MainPage() - { - InitializeComponent(); - } - - private void MapMouseMove(object sender, MouseEventArgs e) - { - var location = map.ViewportPointToLocation(e.GetPosition(map)); - var latitude = (int)Math.Round(location.Latitude * 60000d); - var longitude = (int)Math.Round(Location.NormalizeLongitude(location.Longitude) * 60000d); - var latHemisphere = 'N'; - var lonHemisphere = 'E'; - - if (latitude < 0) - { - latitude = -latitude; - latHemisphere = 'S'; - } - - if (longitude < 0) - { - longitude = -longitude; - lonHemisphere = 'W'; - } - - mouseLocation.Text = string.Format(CultureInfo.InvariantCulture, - "{0} {1:00} {2:00.000}\n{3} {4:000} {5:00.000}", - latHemisphere, latitude / 60000, (double)(latitude % 60000) / 1000d, - lonHemisphere, longitude / 60000, (double)(longitude % 60000) / 1000d); - } - - private void MapMouseLeave(object sender, MouseEventArgs e) - { - mouseLocation.Text = string.Empty; - } - - private void SeamarksChecked(object sender, RoutedEventArgs e) - { - map.Children.Insert(map.Children.IndexOf(mapGraticule), ((MapViewModel)DataContext).MapLayers.SeamarksLayer); - } - - private void SeamarksUnchecked(object sender, RoutedEventArgs e) - { - map.Children.Remove(((MapViewModel)DataContext).MapLayers.SeamarksLayer); - } - } -} diff --git a/SampleApps/SilverlightApplication/Properties/AppManifest.xml b/SampleApps/SilverlightApplication/Properties/AppManifest.xml deleted file mode 100644 index 6712a117..00000000 --- a/SampleApps/SilverlightApplication/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/SampleApps/SilverlightApplication/Properties/AssemblyInfo.cs b/SampleApps/SilverlightApplication/Properties/AssemblyInfo.cs deleted file mode 100644 index 16ed4465..00000000 --- a/SampleApps/SilverlightApplication/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("Silverlight Sample Application")] -[assembly: AssemblyDescription("XAML Map Control Silverlight Sample Application")] -[assembly: AssemblyProduct("XAML Map Control")] -[assembly: AssemblyCompany("Clemens Fischer")] -[assembly: AssemblyCopyright("© 2017 Clemens Fischer")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] diff --git a/SampleApps/SilverlightApplication/Properties/InBrowserSettings.xml b/SampleApps/SilverlightApplication/Properties/InBrowserSettings.xml deleted file mode 100644 index 823301b0..00000000 --- a/SampleApps/SilverlightApplication/Properties/InBrowserSettings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication/Properties/OutOfBrowserSettings.xml b/SampleApps/SilverlightApplication/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index da4329a5..00000000 --- a/SampleApps/SilverlightApplication/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - SilverlightApplication Application on your desktop; at home, at work or on the go. - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication/SilverlightApplication.csproj b/SampleApps/SilverlightApplication/SilverlightApplication.csproj deleted file mode 100644 index 1a064eaa..00000000 --- a/SampleApps/SilverlightApplication/SilverlightApplication.csproj +++ /dev/null @@ -1,129 +0,0 @@ - - - - Debug - AnyCPU - 8.0.50727 - 2.0 - {85AACDB7-959D-406D-A8DF-2F1E013F8F40} - {A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} - Library - Properties - SilverlightApplication - SilverlightApplication - Silverlight - v5.0 - $(TargetFrameworkVersion) - true - - - true - true - SilverlightApplication.xap - Properties\AppManifest.xml - SilverlightApplication.App - SilverlightApplicationTestPage.html - true - true - true - Properties\OutOfBrowserSettings.xml - false - true - - - - - - v3.5 - - - true - full - false - Bin\Debug - DEBUG;TRACE;SILVERLIGHT - true - true - prompt - 4 - - - none - true - Bin\Release - TRACE;SILVERLIGHT - true - true - prompt - 4 - - - - - - - $(TargetFrameworkDirectory)System.Core.dll - - - - - - - MapLayers.cs - - - MapViewModel.cs - - - App.xaml - - - MainPage.xaml - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - - - - {eb133b78-deff-416a-8f0c-89e54d766576} - MapControl.Silverlight - - - - - - - - 10_535_330.jpg - - - - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/SilverlightApplication/SilverlightApplication.csproj.user b/SampleApps/SilverlightApplication/SilverlightApplication.csproj.user deleted file mode 100644 index 65ef3aff..00000000 --- a/SampleApps/SilverlightApplication/SilverlightApplication.csproj.user +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - OfflineApplication - True - False - False - - - - - - - - - True - SilverlightApplication.Web - True - - - - - \ No newline at end of file diff --git a/SampleApps/UniversalApp/MainPage.xaml.cs b/SampleApps/UniversalApp/MainPage.xaml.cs index 24a6daab..d606a8a5 100644 --- a/SampleApps/UniversalApp/MainPage.xaml.cs +++ b/SampleApps/UniversalApp/MainPage.xaml.cs @@ -1,4 +1,6 @@ -using ViewModel; +using MapControl; +using MapControl.Caching; +using ViewModel; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; @@ -11,8 +13,8 @@ namespace UniversalApp public MainPage() { - //MapControl.TileImageLoader.Cache = new MapControl.Caching.ImageFileCache(); - //MapControl.TileImageLoader.Cache = new MapControl.Caching.FileDbCache(); + TileImageLoader.Cache = new ImageFileCache(TileImageLoader.DefaultCacheFolder); + //TileImageLoader.Cache = new FileDbCache(TileImageLoader.DefaultCacheFolder); InitializeComponent(); DataContext = ViewModel; diff --git a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs index 110b313c..7bbc5358 100644 --- a/SampleApps/UniversalApp/Properties/AssemblyInfo.cs +++ b/SampleApps/UniversalApp/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyCopyright("© 2017 Clemens Fischer")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("3.3.0")] +[assembly: AssemblyFileVersion("3.3.0")] [assembly: AssemblyConfiguration("")] [assembly: ComVisible(false)] diff --git a/SampleApps/UniversalApp/Properties/Default.rd.xml b/SampleApps/UniversalApp/Properties/Default.rd.xml index 80a960ce..23c23778 100644 --- a/SampleApps/UniversalApp/Properties/Default.rd.xml +++ b/SampleApps/UniversalApp/Properties/Default.rd.xml @@ -1,31 +1,5 @@ - - - - - - - - - - - + + + \ No newline at end of file diff --git a/SampleApps/UniversalApp/UniversalApp.csproj b/SampleApps/UniversalApp/UniversalApp.csproj index 335903b4..37c26460 100644 --- a/SampleApps/UniversalApp/UniversalApp.csproj +++ b/SampleApps/UniversalApp/UniversalApp.csproj @@ -11,13 +11,14 @@ UniversalApp en-US UAP - 10.0.10586.0 - 10.0.10586.0 + 10.0.10240.0 + 10.0.10240.0 14 true 512 {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} UniversalApp_TemporaryKey.pfx + 5DCEEAF8B009D22AA0D41EA61710C9CB80E66BD4 true @@ -102,10 +103,10 @@ - + MapLayers.cs - + MapViewModel.cs @@ -124,7 +125,7 @@ - + 10_535_330.jpg @@ -147,17 +148,13 @@ - - {c7bf2b18-cc74-430b-bcb2-600304efa3d8} - FileDbCache.WinRT + + {3ff37d40-f770-45b2-95dd-7a84093e1425} + FileDbCache.UWP - - {f789647e-96f7-43e3-a895-fa3fe8d01260} - ImageFileCache.WinRT - - - {63cefdf7-5170-43b6-86f8-5c4a383a1615} - MapControl.WinRT + + {951bc5d2-d653-42d9-9a91-21dc50de0182} + MapControl.UWP diff --git a/SampleApps/UniversalApp/UniversalApp_TemporaryKey.pfx b/SampleApps/UniversalApp/UniversalApp_TemporaryKey.pfx index 66f065bc..6fec6f5c 100644 Binary files a/SampleApps/UniversalApp/UniversalApp_TemporaryKey.pfx and b/SampleApps/UniversalApp/UniversalApp_TemporaryKey.pfx differ diff --git a/SampleApps/UniversalApp/project.json b/SampleApps/UniversalApp/project.json index c5949392..92d14561 100644 --- a/SampleApps/UniversalApp/project.json +++ b/SampleApps/UniversalApp/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" + "Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0" }, "frameworks": { "uap10.0": {} diff --git a/SampleApps/UniversalApp/project.lock.json b/SampleApps/UniversalApp/project.lock.json deleted file mode 100644 index 730e3bd5..00000000 --- a/SampleApps/UniversalApp/project.lock.json +++ /dev/null @@ -1,14573 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - "UAP,Version=v10.0": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win8-arm/native/clretwrc.dll": {}, - "runtimes/win8-arm/native/coreclr.dll": {}, - "runtimes/win8-arm/native/dbgshim.dll": {}, - "runtimes/win8-arm/native/mscordaccore.dll": {}, - "runtimes/win8-arm/native/mscordbi.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "native": { - "runtimes/win10-x86/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "native": { - "runtimes/win10-x64/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )", - "Microsoft.NETCore": "[5.0.0, )", - "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Data.Common": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Diagnostics.StackTrace": "[4.0.0, )", - "System.IO.IsolatedStorage": "[4.0.0, )", - "System.Net.Http.Rtc": "[4.0.0, )", - "System.Net.Requests": "[4.0.10, )", - "System.Net.Sockets": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", - "System.Reflection.Context": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Serialization.Json": "[4.0.0, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", - "System.ServiceModel.Duplex": "[4.0.0, )", - "System.ServiceModel.Http": "[4.0.10, )", - "System.ServiceModel.NetTcp": "[4.0.0, )", - "System.ServiceModel.Primitives": "[4.0.0, )", - "System.ServiceModel.Security": "[4.0.0, )", - "System.Text.Encoding.CodePages": "[4.0.0, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Data.Common.dll": {} - }, - "runtime": { - "lib/dotnet/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.Http": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Net.Requests/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Sockets.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/dotnet/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Numerics.Vectors": "[4.1.0, )" - }, - "compile": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.ServiceModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Collections.Specialized": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.WebHeaderCollection": "[4.0.0, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Serialization.Xml": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Xml.XmlSerializer": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.Context/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.0": { - "dependencies": { - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "dependencies": { - "System.Runtime.Serialization.Primitives": "[4.0.10, )", - "System.Private.DataContractSerialization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.ServiceModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Xml.XmlDocument": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Text.RegularExpressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.CSharp/4.0.0": { - "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.CSharp.nuspec", - "lib/dotnet/Microsoft.CSharp.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/Microsoft.CSharp.dll", - "ref/dotnet/Microsoft.CSharp.xml", - "ref/dotnet/zh-hant/Microsoft.CSharp.xml", - "ref/dotnet/de/Microsoft.CSharp.xml", - "ref/dotnet/fr/Microsoft.CSharp.xml", - "ref/dotnet/it/Microsoft.CSharp.xml", - "ref/dotnet/ja/Microsoft.CSharp.xml", - "ref/dotnet/ko/Microsoft.CSharp.xml", - "ref/dotnet/ru/Microsoft.CSharp.xml", - "ref/dotnet/zh-hans/Microsoft.CSharp.xml", - "ref/dotnet/es/Microsoft.CSharp.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore/5.0.0": { - "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.nuspec", - "_._", - "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Platforms.nuspec", - "runtime.json", - "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Portable.Compatibility.nuspec", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll", - "lib/dnxcore50/System.Core.dll", - "lib/dnxcore50/System.dll", - "lib/dnxcore50/System.Net.dll", - "lib/dnxcore50/System.Numerics.dll", - "lib/dnxcore50/System.Runtime.Serialization.dll", - "lib/dnxcore50/System.ServiceModel.dll", - "lib/dnxcore50/System.ServiceModel.Web.dll", - "lib/dnxcore50/System.Windows.dll", - "lib/dnxcore50/System.Xml.dll", - "lib/dnxcore50/System.Xml.Linq.dll", - "lib/dnxcore50/System.Xml.Serialization.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/mscorlib.dll", - "ref/dotnet/System.ComponentModel.DataAnnotations.dll", - "ref/dotnet/System.Core.dll", - "ref/dotnet/System.dll", - "ref/dotnet/System.Net.dll", - "ref/dotnet/System.Numerics.dll", - "ref/dotnet/System.Runtime.Serialization.dll", - "ref/dotnet/System.ServiceModel.dll", - "ref/dotnet/System.ServiceModel.Web.dll", - "ref/dotnet/System.Windows.dll", - "ref/dotnet/System.Xml.dll", - "ref/dotnet/System.Xml.Linq.dll", - "ref/dotnet/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/System.Net.dll", - "runtimes/aot/lib/netcore50/System.Numerics.dll", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/mscorlib.dll", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/8131b8ae030a45e7986737a0c1d04ef5.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.nuspec", - "runtime.json", - "package/services/metadata/core-properties/f289de2ffef9428684eca0c193bc8765.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "sha512": "hoJfIl981eXwn9Tz8onO/J1xaYApIfp/YrhjSh9rRhml1U5Wj80LBgyp/6n+KI3VlvcAraThhnHnCTp+M3Uh+w==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", - "runtimes/win8-arm/native/clretwrc.dll", - "runtimes/win8-arm/native/coreclr.dll", - "runtimes/win8-arm/native/dbgshim.dll", - "runtimes/win8-arm/native/mscordaccore.dll", - "runtimes/win8-arm/native/mscordbi.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll", - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/c1cbeaed81514106b6b7971ac193f132.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", - "runtimes/win7-x64/native/clretwrc.dll", - "runtimes/win7-x64/native/coreclr.dll", - "runtimes/win7-x64/native/dbgshim.dll", - "runtimes/win7-x64/native/mscordaccore.dll", - "runtimes/win7-x64/native/mscordbi.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll", - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", - "runtimes/win7-x86/native/clretwrc.dll", - "runtimes/win7-x86/native/coreclr.dll", - "runtimes/win7-x86/native/dbgshim.dll", - "runtimes/win7-x86/native/mscordaccore.dll", - "runtimes/win7-x86/native/mscordbi.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll", - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/dd7e29450ade4bdaab9794850cd11d7a.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.Native.nuspec", - "_._", - "package/services/metadata/core-properties/a985563978b547f984c16150ef73e353.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets/1.0.0": { - "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.nuspec", - "runtime.json", - "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", - "runtime.json", - "package/services/metadata/core-properties/0d18100c9f8c491492d8ddeaa9581526.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { - "sha512": "D0nsAm+yTk0oSSC7E6PcmuuEewBAQbGgIXNcCnRqQ4qLPdQLMjMHg8cilGs3xZgwTRQmMtEn45TAatrU1otWPQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", - "_._", - "package/services/metadata/core-properties/5dffd3ce5b6640febe2db09251387062.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", - "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win10-x64/native/_._", - "package/services/metadata/core-properties/b25894a2a9234c329a98dc84006b2292.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", - "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win10-x86/native/_._", - "package/services/metadata/core-properties/b773d829b3664669b45b4b4e97bdb635.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.VisualBasic/10.0.0": { - "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.VisualBasic.nuspec", - "lib/dotnet/Microsoft.VisualBasic.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/wpa81/_._", - "ref/dotnet/Microsoft.VisualBasic.dll", - "ref/dotnet/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", - "ref/dotnet/de/Microsoft.VisualBasic.xml", - "ref/dotnet/fr/Microsoft.VisualBasic.xml", - "ref/dotnet/it/Microsoft.VisualBasic.xml", - "ref/dotnet/ja/Microsoft.VisualBasic.xml", - "ref/dotnet/ko/Microsoft.VisualBasic.xml", - "ref/dotnet/ru/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", - "ref/dotnet/es/Microsoft.VisualBasic.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.Win32.Primitives.nuspec", - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/dotnet/de/Microsoft.Win32.Primitives.xml", - "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", - "ref/dotnet/it/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", - "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", - "[Content_Types].xml" - ] - }, - "System.AppContext/4.0.0": { - "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.AppContext.nuspec", - "lib/netcore50/System.AppContext.dll", - "lib/DNXCore50/System.AppContext.dll", - "lib/net46/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.AppContext.dll", - "ref/dotnet/System.AppContext.xml", - "ref/dotnet/zh-hant/System.AppContext.xml", - "ref/dotnet/de/System.AppContext.xml", - "ref/dotnet/fr/System.AppContext.xml", - "ref/dotnet/it/System.AppContext.xml", - "ref/dotnet/ja/System.AppContext.xml", - "ref/dotnet/ko/System.AppContext.xml", - "ref/dotnet/ru/System.AppContext.xml", - "ref/dotnet/zh-hans/System.AppContext.xml", - "ref/dotnet/es/System.AppContext.xml", - "ref/net46/System.AppContext.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections/4.0.10": { - "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.nuspec", - "lib/netcore50/System.Collections.dll", - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.dll", - "ref/dotnet/System.Collections.xml", - "ref/dotnet/zh-hant/System.Collections.xml", - "ref/dotnet/de/System.Collections.xml", - "ref/dotnet/fr/System.Collections.xml", - "ref/dotnet/it/System.Collections.xml", - "ref/dotnet/ja/System.Collections.xml", - "ref/dotnet/ko/System.Collections.xml", - "ref/dotnet/ru/System.Collections.xml", - "ref/dotnet/zh-hans/System.Collections.xml", - "ref/dotnet/es/System.Collections.xml", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.Concurrent/4.0.10": { - "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.Concurrent.nuspec", - "lib/dotnet/System.Collections.Concurrent.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.Concurrent.dll", - "ref/dotnet/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", - "ref/dotnet/de/System.Collections.Concurrent.xml", - "ref/dotnet/fr/System.Collections.Concurrent.xml", - "ref/dotnet/it/System.Collections.Concurrent.xml", - "ref/dotnet/ja/System.Collections.Concurrent.xml", - "ref/dotnet/ko/System.Collections.Concurrent.xml", - "ref/dotnet/ru/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet/es/System.Collections.Concurrent.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.Immutable/1.1.37": { - "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.Immutable.nuspec", - "lib/dotnet/System.Collections.Immutable.dll", - "lib/dotnet/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.NonGeneric/4.0.0": { - "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.NonGeneric.nuspec", - "lib/dotnet/System.Collections.NonGeneric.dll", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.NonGeneric.dll", - "ref/dotnet/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", - "ref/dotnet/de/System.Collections.NonGeneric.xml", - "ref/dotnet/fr/System.Collections.NonGeneric.xml", - "ref/dotnet/it/System.Collections.NonGeneric.xml", - "ref/dotnet/ja/System.Collections.NonGeneric.xml", - "ref/dotnet/ko/System.Collections.NonGeneric.xml", - "ref/dotnet/ru/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", - "ref/dotnet/es/System.Collections.NonGeneric.xml", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.Specialized/4.0.0": { - "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.Specialized.nuspec", - "lib/dotnet/System.Collections.Specialized.dll", - "lib/net46/System.Collections.Specialized.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.Specialized.dll", - "ref/dotnet/System.Collections.Specialized.xml", - "ref/dotnet/zh-hant/System.Collections.Specialized.xml", - "ref/dotnet/de/System.Collections.Specialized.xml", - "ref/dotnet/fr/System.Collections.Specialized.xml", - "ref/dotnet/it/System.Collections.Specialized.xml", - "ref/dotnet/ja/System.Collections.Specialized.xml", - "ref/dotnet/ko/System.Collections.Specialized.xml", - "ref/dotnet/ru/System.Collections.Specialized.xml", - "ref/dotnet/zh-hans/System.Collections.Specialized.xml", - "ref/dotnet/es/System.Collections.Specialized.xml", - "ref/net46/System.Collections.Specialized.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/e7002e4ccd044c00a7cbd4a37efe3400.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel/4.0.0": { - "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.nuspec", - "lib/dotnet/System.ComponentModel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.dll", - "ref/dotnet/System.ComponentModel.xml", - "ref/dotnet/zh-hant/System.ComponentModel.xml", - "ref/dotnet/de/System.ComponentModel.xml", - "ref/dotnet/fr/System.ComponentModel.xml", - "ref/dotnet/it/System.ComponentModel.xml", - "ref/dotnet/ja/System.ComponentModel.xml", - "ref/dotnet/ko/System.ComponentModel.xml", - "ref/dotnet/ru/System.ComponentModel.xml", - "ref/dotnet/zh-hans/System.ComponentModel.xml", - "ref/dotnet/es/System.ComponentModel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel.Annotations/4.0.10": { - "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.Annotations.nuspec", - "lib/dotnet/System.ComponentModel.Annotations.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ComponentModel.Annotations.dll", - "ref/dotnet/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", - "ref/dotnet/de/System.ComponentModel.Annotations.xml", - "ref/dotnet/fr/System.ComponentModel.Annotations.xml", - "ref/dotnet/it/System.ComponentModel.Annotations.xml", - "ref/dotnet/ja/System.ComponentModel.Annotations.xml", - "ref/dotnet/ko/System.ComponentModel.Annotations.xml", - "ref/dotnet/ru/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", - "ref/dotnet/es/System.ComponentModel.Annotations.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.EventBasedAsync.nuspec", - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", - "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Data.Common/4.0.0": { - "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Data.Common.nuspec", - "lib/dotnet/System.Data.Common.dll", - "lib/net46/System.Data.Common.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Data.Common.dll", - "ref/dotnet/System.Data.Common.xml", - "ref/dotnet/zh-hant/System.Data.Common.xml", - "ref/dotnet/de/System.Data.Common.xml", - "ref/dotnet/fr/System.Data.Common.xml", - "ref/dotnet/it/System.Data.Common.xml", - "ref/dotnet/ja/System.Data.Common.xml", - "ref/dotnet/ko/System.Data.Common.xml", - "ref/dotnet/ru/System.Data.Common.xml", - "ref/dotnet/zh-hans/System.Data.Common.xml", - "ref/dotnet/es/System.Data.Common.xml", - "ref/net46/System.Data.Common.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/aa5ad20c33d94c8e8016ba4fc64d8d66.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Contracts/4.0.0": { - "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Contracts.nuspec", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Contracts.dll", - "ref/dotnet/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", - "ref/dotnet/de/System.Diagnostics.Contracts.xml", - "ref/dotnet/fr/System.Diagnostics.Contracts.xml", - "ref/dotnet/it/System.Diagnostics.Contracts.xml", - "ref/dotnet/ja/System.Diagnostics.Contracts.xml", - "ref/dotnet/ko/System.Diagnostics.Contracts.xml", - "ref/dotnet/ru/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet/es/System.Diagnostics.Contracts.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Debug/4.0.10": { - "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Debug.nuspec", - "lib/DNXCore50/System.Diagnostics.Debug.dll", - "lib/netcore50/System.Diagnostics.Debug.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/dotnet/de/System.Diagnostics.Debug.xml", - "ref/dotnet/fr/System.Diagnostics.Debug.xml", - "ref/dotnet/it/System.Diagnostics.Debug.xml", - "ref/dotnet/ja/System.Diagnostics.Debug.xml", - "ref/dotnet/ko/System.Diagnostics.Debug.xml", - "ref/dotnet/ru/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.StackTrace/4.0.0": { - "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.StackTrace.nuspec", - "lib/DNXCore50/System.Diagnostics.StackTrace.dll", - "lib/netcore50/System.Diagnostics.StackTrace.dll", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.StackTrace.dll", - "ref/dotnet/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/dotnet/de/System.Diagnostics.StackTrace.xml", - "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", - "ref/dotnet/it/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/dotnet/es/System.Diagnostics.StackTrace.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Tools/4.0.0": { - "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Tools.nuspec", - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Tools.dll", - "ref/dotnet/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", - "ref/dotnet/de/System.Diagnostics.Tools.xml", - "ref/dotnet/fr/System.Diagnostics.Tools.xml", - "ref/dotnet/it/System.Diagnostics.Tools.xml", - "ref/dotnet/ja/System.Diagnostics.Tools.xml", - "ref/dotnet/ko/System.Diagnostics.Tools.xml", - "ref/dotnet/ru/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet/es/System.Diagnostics.Tools.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Tracing.nuspec", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/dotnet/de/System.Diagnostics.Tracing.xml", - "ref/dotnet/fr/System.Diagnostics.Tracing.xml", - "ref/dotnet/it/System.Diagnostics.Tracing.xml", - "ref/dotnet/ja/System.Diagnostics.Tracing.xml", - "ref/dotnet/ko/System.Diagnostics.Tracing.xml", - "ref/dotnet/ru/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Dynamic.Runtime/4.0.10": { - "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Dynamic.Runtime.nuspec", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/DNXCore50/System.Dynamic.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Dynamic.Runtime.dll", - "ref/dotnet/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", - "ref/dotnet/de/System.Dynamic.Runtime.xml", - "ref/dotnet/fr/System.Dynamic.Runtime.xml", - "ref/dotnet/it/System.Dynamic.Runtime.xml", - "ref/dotnet/ja/System.Dynamic.Runtime.xml", - "ref/dotnet/ko/System.Dynamic.Runtime.xml", - "ref/dotnet/ru/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet/es/System.Dynamic.Runtime.xml", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization/4.0.10": { - "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.nuspec", - "lib/netcore50/System.Globalization.dll", - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.dll", - "ref/dotnet/System.Globalization.xml", - "ref/dotnet/zh-hant/System.Globalization.xml", - "ref/dotnet/de/System.Globalization.xml", - "ref/dotnet/fr/System.Globalization.xml", - "ref/dotnet/it/System.Globalization.xml", - "ref/dotnet/ja/System.Globalization.xml", - "ref/dotnet/ko/System.Globalization.xml", - "ref/dotnet/ru/System.Globalization.xml", - "ref/dotnet/zh-hans/System.Globalization.xml", - "ref/dotnet/es/System.Globalization.xml", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.Calendars.nuspec", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/net46/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/dotnet/de/System.Globalization.Calendars.xml", - "ref/dotnet/fr/System.Globalization.Calendars.xml", - "ref/dotnet/it/System.Globalization.Calendars.xml", - "ref/dotnet/ja/System.Globalization.Calendars.xml", - "ref/dotnet/ko/System.Globalization.Calendars.xml", - "ref/dotnet/ru/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", - "ref/net46/System.Globalization.Calendars.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization.Extensions/4.0.0": { - "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.Extensions.nuspec", - "lib/dotnet/System.Globalization.Extensions.dll", - "lib/net46/System.Globalization.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.Extensions.dll", - "ref/dotnet/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", - "ref/dotnet/de/System.Globalization.Extensions.xml", - "ref/dotnet/fr/System.Globalization.Extensions.xml", - "ref/dotnet/it/System.Globalization.Extensions.xml", - "ref/dotnet/ja/System.Globalization.Extensions.xml", - "ref/dotnet/ko/System.Globalization.Extensions.xml", - "ref/dotnet/ru/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet/es/System.Globalization.Extensions.xml", - "ref/net46/System.Globalization.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO/4.0.10": { - "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.nuspec", - "lib/netcore50/System.IO.dll", - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/dotnet/de/System.IO.xml", - "ref/dotnet/fr/System.IO.xml", - "ref/dotnet/it/System.IO.xml", - "ref/dotnet/ja/System.IO.xml", - "ref/dotnet/ko/System.IO.xml", - "ref/dotnet/ru/System.IO.xml", - "ref/dotnet/zh-hans/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression/4.0.0": { - "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.nuspec", - "lib/dotnet/System.IO.Compression.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.IO.Compression.dll", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.Compression.dll", - "ref/dotnet/System.IO.Compression.xml", - "ref/dotnet/zh-hant/System.IO.Compression.xml", - "ref/dotnet/de/System.IO.Compression.xml", - "ref/dotnet/fr/System.IO.Compression.xml", - "ref/dotnet/it/System.IO.Compression.xml", - "ref/dotnet/ja/System.IO.Compression.xml", - "ref/dotnet/ko/System.IO.Compression.xml", - "ref/dotnet/ru/System.IO.Compression.xml", - "ref/dotnet/zh-hans/System.IO.Compression.xml", - "ref/dotnet/es/System.IO.Compression.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-arm.nuspec", - "runtimes/win7-arm/native/clrcompression.dll", - "runtimes/win10-arm/native/ClrCompression.dll", - "package/services/metadata/core-properties/e09228dcfd7b47adb2ddcf73e2eb6ddf.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-x64.nuspec", - "runtimes/win7-x64/native/clrcompression.dll", - "runtimes/win10-x64/native/ClrCompression.dll", - "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-x86.nuspec", - "runtimes/win7-x86/native/clrcompression.dll", - "runtimes/win10-x86/native/ClrCompression.dll", - "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.ZipFile/4.0.0": { - "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.ZipFile.nuspec", - "lib/dotnet/System.IO.Compression.ZipFile.dll", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.Compression.ZipFile.dll", - "ref/dotnet/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/dotnet/de/System.IO.Compression.ZipFile.xml", - "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", - "ref/dotnet/it/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/dotnet/es/System.IO.Compression.ZipFile.xml", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.FileSystem/4.0.0": { - "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.FileSystem.nuspec", - "lib/DNXCore50/System.IO.FileSystem.dll", - "lib/netcore50/System.IO.FileSystem.dll", - "lib/net46/System.IO.FileSystem.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.FileSystem.dll", - "ref/dotnet/System.IO.FileSystem.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.xml", - "ref/dotnet/de/System.IO.FileSystem.xml", - "ref/dotnet/fr/System.IO.FileSystem.xml", - "ref/dotnet/it/System.IO.FileSystem.xml", - "ref/dotnet/ja/System.IO.FileSystem.xml", - "ref/dotnet/ko/System.IO.FileSystem.xml", - "ref/dotnet/ru/System.IO.FileSystem.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet/es/System.IO.FileSystem.xml", - "ref/net46/System.IO.FileSystem.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.FileSystem.Primitives.nuspec", - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.IsolatedStorage/4.0.0": { - "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.IsolatedStorage.nuspec", - "lib/netcore50/System.IO.IsolatedStorage.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.IsolatedStorage.dll", - "ref/dotnet/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml", - "ref/dotnet/de/System.IO.IsolatedStorage.xml", - "ref/dotnet/fr/System.IO.IsolatedStorage.xml", - "ref/dotnet/it/System.IO.IsolatedStorage.xml", - "ref/dotnet/ja/System.IO.IsolatedStorage.xml", - "ref/dotnet/ko/System.IO.IsolatedStorage.xml", - "ref/dotnet/ru/System.IO.IsolatedStorage.xml", - "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml", - "ref/dotnet/es/System.IO.IsolatedStorage.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/0d69e649eab84c3cad77d63bb460f7e7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.UnmanagedMemoryStream.nuspec", - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", - "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq/4.0.0": { - "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.nuspec", - "lib/dotnet/System.Linq.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.dll", - "ref/dotnet/System.Linq.xml", - "ref/dotnet/zh-hant/System.Linq.xml", - "ref/dotnet/de/System.Linq.xml", - "ref/dotnet/fr/System.Linq.xml", - "ref/dotnet/it/System.Linq.xml", - "ref/dotnet/ja/System.Linq.xml", - "ref/dotnet/ko/System.Linq.xml", - "ref/dotnet/ru/System.Linq.xml", - "ref/dotnet/zh-hans/System.Linq.xml", - "ref/dotnet/es/System.Linq.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Expressions/4.0.10": { - "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Expressions.nuspec", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Linq.Expressions.dll", - "ref/dotnet/System.Linq.Expressions.xml", - "ref/dotnet/zh-hant/System.Linq.Expressions.xml", - "ref/dotnet/de/System.Linq.Expressions.xml", - "ref/dotnet/fr/System.Linq.Expressions.xml", - "ref/dotnet/it/System.Linq.Expressions.xml", - "ref/dotnet/ja/System.Linq.Expressions.xml", - "ref/dotnet/ko/System.Linq.Expressions.xml", - "ref/dotnet/ru/System.Linq.Expressions.xml", - "ref/dotnet/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet/es/System.Linq.Expressions.xml", - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Parallel/4.0.0": { - "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Parallel.nuspec", - "lib/dotnet/System.Linq.Parallel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Parallel.dll", - "ref/dotnet/System.Linq.Parallel.xml", - "ref/dotnet/zh-hant/System.Linq.Parallel.xml", - "ref/dotnet/de/System.Linq.Parallel.xml", - "ref/dotnet/fr/System.Linq.Parallel.xml", - "ref/dotnet/it/System.Linq.Parallel.xml", - "ref/dotnet/ja/System.Linq.Parallel.xml", - "ref/dotnet/ko/System.Linq.Parallel.xml", - "ref/dotnet/ru/System.Linq.Parallel.xml", - "ref/dotnet/zh-hans/System.Linq.Parallel.xml", - "ref/dotnet/es/System.Linq.Parallel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Queryable/4.0.0": { - "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Queryable.nuspec", - "lib/dotnet/System.Linq.Queryable.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Queryable.dll", - "ref/dotnet/System.Linq.Queryable.xml", - "ref/dotnet/zh-hant/System.Linq.Queryable.xml", - "ref/dotnet/de/System.Linq.Queryable.xml", - "ref/dotnet/fr/System.Linq.Queryable.xml", - "ref/dotnet/it/System.Linq.Queryable.xml", - "ref/dotnet/ja/System.Linq.Queryable.xml", - "ref/dotnet/ko/System.Linq.Queryable.xml", - "ref/dotnet/ru/System.Linq.Queryable.xml", - "ref/dotnet/zh-hans/System.Linq.Queryable.xml", - "ref/dotnet/es/System.Linq.Queryable.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Http/4.0.0": { - "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Http.nuspec", - "lib/netcore50/System.Net.Http.dll", - "lib/DNXCore50/System.Net.Http.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Net.Http.dll", - "ref/dotnet/System.Net.Http.xml", - "ref/dotnet/zh-hant/System.Net.Http.xml", - "ref/dotnet/de/System.Net.Http.xml", - "ref/dotnet/fr/System.Net.Http.xml", - "ref/dotnet/it/System.Net.Http.xml", - "ref/dotnet/ja/System.Net.Http.xml", - "ref/dotnet/ko/System.Net.Http.xml", - "ref/dotnet/ru/System.Net.Http.xml", - "ref/dotnet/zh-hans/System.Net.Http.xml", - "ref/dotnet/es/System.Net.Http.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Http.Rtc/4.0.0": { - "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Http.Rtc.nuspec", - "lib/netcore50/System.Net.Http.Rtc.dll", - "lib/win8/_._", - "ref/dotnet/System.Net.Http.Rtc.dll", - "ref/dotnet/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml", - "ref/dotnet/de/System.Net.Http.Rtc.xml", - "ref/dotnet/fr/System.Net.Http.Rtc.xml", - "ref/dotnet/it/System.Net.Http.Rtc.xml", - "ref/dotnet/ja/System.Net.Http.Rtc.xml", - "ref/dotnet/ko/System.Net.Http.Rtc.xml", - "ref/dotnet/ru/System.Net.Http.Rtc.xml", - "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml", - "ref/dotnet/es/System.Net.Http.Rtc.xml", - "ref/win8/_._", - "ref/netcore50/System.Net.Http.Rtc.dll", - "ref/netcore50/System.Net.Http.Rtc.xml", - "package/services/metadata/core-properties/5ae6b04142264f2abb319c7dccbfb69f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.NetworkInformation/4.0.0": { - "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.NetworkInformation.nuspec", - "lib/netcore50/System.Net.NetworkInformation.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.NetworkInformation.dll", - "ref/dotnet/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", - "ref/dotnet/de/System.Net.NetworkInformation.xml", - "ref/dotnet/fr/System.Net.NetworkInformation.xml", - "ref/dotnet/it/System.Net.NetworkInformation.xml", - "ref/dotnet/ja/System.Net.NetworkInformation.xml", - "ref/dotnet/ko/System.Net.NetworkInformation.xml", - "ref/dotnet/ru/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", - "ref/dotnet/es/System.Net.NetworkInformation.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Primitives/4.0.10": { - "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Primitives.nuspec", - "lib/netcore50/System.Net.Primitives.dll", - "lib/DNXCore50/System.Net.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.Primitives.dll", - "ref/dotnet/System.Net.Primitives.xml", - "ref/dotnet/zh-hant/System.Net.Primitives.xml", - "ref/dotnet/de/System.Net.Primitives.xml", - "ref/dotnet/fr/System.Net.Primitives.xml", - "ref/dotnet/it/System.Net.Primitives.xml", - "ref/dotnet/ja/System.Net.Primitives.xml", - "ref/dotnet/ko/System.Net.Primitives.xml", - "ref/dotnet/ru/System.Net.Primitives.xml", - "ref/dotnet/zh-hans/System.Net.Primitives.xml", - "ref/dotnet/es/System.Net.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Requests/4.0.10": { - "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Requests.nuspec", - "lib/dotnet/System.Net.Requests.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.Requests.dll", - "ref/dotnet/System.Net.Requests.xml", - "ref/dotnet/zh-hant/System.Net.Requests.xml", - "ref/dotnet/de/System.Net.Requests.xml", - "ref/dotnet/fr/System.Net.Requests.xml", - "ref/dotnet/it/System.Net.Requests.xml", - "ref/dotnet/ja/System.Net.Requests.xml", - "ref/dotnet/ko/System.Net.Requests.xml", - "ref/dotnet/ru/System.Net.Requests.xml", - "ref/dotnet/zh-hans/System.Net.Requests.xml", - "ref/dotnet/es/System.Net.Requests.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/7a4e397882e44db3aa06d6d8c9dd3d66.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Sockets/4.0.0": { - "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Sockets.nuspec", - "lib/netcore50/System.Net.Sockets.dll", - "lib/net46/System.Net.Sockets.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.Sockets.dll", - "ref/dotnet/System.Net.Sockets.xml", - "ref/dotnet/zh-hant/System.Net.Sockets.xml", - "ref/dotnet/de/System.Net.Sockets.xml", - "ref/dotnet/fr/System.Net.Sockets.xml", - "ref/dotnet/it/System.Net.Sockets.xml", - "ref/dotnet/ja/System.Net.Sockets.xml", - "ref/dotnet/ko/System.Net.Sockets.xml", - "ref/dotnet/ru/System.Net.Sockets.xml", - "ref/dotnet/zh-hans/System.Net.Sockets.xml", - "ref/dotnet/es/System.Net.Sockets.xml", - "ref/net46/System.Net.Sockets.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/cca33bc0996f49c68976fa5bab1500ff.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.WebHeaderCollection/4.0.0": { - "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.WebHeaderCollection.nuspec", - "lib/dotnet/System.Net.WebHeaderCollection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.WebHeaderCollection.dll", - "ref/dotnet/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", - "ref/dotnet/de/System.Net.WebHeaderCollection.xml", - "ref/dotnet/fr/System.Net.WebHeaderCollection.xml", - "ref/dotnet/it/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ja/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ko/System.Net.WebHeaderCollection.xml", - "ref/dotnet/ru/System.Net.WebHeaderCollection.xml", - "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml", - "ref/dotnet/es/System.Net.WebHeaderCollection.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/7ab0d7bde19b47548622bfa222a4eccb.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Numerics.Vectors/4.1.0": { - "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Numerics.Vectors.nuspec", - "lib/dotnet/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.0": { - "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Numerics.Vectors.WindowsRuntime.nuspec", - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll", - "package/services/metadata/core-properties/6db0e2464a274e8eb688cd193eb37876.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ObjectModel/4.0.10": { - "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ObjectModel.nuspec", - "lib/dotnet/System.ObjectModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ObjectModel.dll", - "ref/dotnet/System.ObjectModel.xml", - "ref/dotnet/zh-hant/System.ObjectModel.xml", - "ref/dotnet/de/System.ObjectModel.xml", - "ref/dotnet/fr/System.ObjectModel.xml", - "ref/dotnet/it/System.ObjectModel.xml", - "ref/dotnet/ja/System.ObjectModel.xml", - "ref/dotnet/ko/System.ObjectModel.xml", - "ref/dotnet/ru/System.ObjectModel.xml", - "ref/dotnet/zh-hans/System.ObjectModel.xml", - "ref/dotnet/es/System.ObjectModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.DataContractSerialization/4.0.0": { - "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.DataContractSerialization.nuspec", - "lib/DNXCore50/System.Private.DataContractSerialization.dll", - "lib/netcore50/System.Private.DataContractSerialization.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", - "runtime.json", - "package/services/metadata/core-properties/124ac81dfe1e4d08942831c90a93a6ba.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.Networking/4.0.0": { - "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.Networking.nuspec", - "lib/netcore50/System.Private.Networking.dll", - "lib/DNXCore50/System.Private.Networking.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.ServiceModel/4.0.0": { - "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.ServiceModel.nuspec", - "lib/netcore50/System.Private.ServiceModel.dll", - "lib/DNXCore50/System.Private.ServiceModel.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "package/services/metadata/core-properties/5668af7c10764fafb51182a583dfb872.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.Uri/4.0.0": { - "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.Uri.nuspec", - "lib/netcore50/System.Private.Uri.dll", - "lib/DNXCore50/System.Private.Uri.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", - "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection/4.0.10": { - "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.nuspec", - "lib/netcore50/System.Reflection.dll", - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/dotnet/de/System.Reflection.xml", - "ref/dotnet/fr/System.Reflection.xml", - "ref/dotnet/it/System.Reflection.xml", - "ref/dotnet/ja/System.Reflection.xml", - "ref/dotnet/ko/System.Reflection.xml", - "ref/dotnet/ru/System.Reflection.xml", - "ref/dotnet/zh-hans/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Context/4.0.0": { - "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Context.nuspec", - "lib/netcore50/System.Reflection.Context.dll", - "lib/net45/_._", - "lib/win8/_._", - "ref/dotnet/System.Reflection.Context.dll", - "ref/dotnet/System.Reflection.Context.xml", - "ref/dotnet/zh-hant/System.Reflection.Context.xml", - "ref/dotnet/de/System.Reflection.Context.xml", - "ref/dotnet/fr/System.Reflection.Context.xml", - "ref/dotnet/it/System.Reflection.Context.xml", - "ref/dotnet/ja/System.Reflection.Context.xml", - "ref/dotnet/ko/System.Reflection.Context.xml", - "ref/dotnet/ru/System.Reflection.Context.xml", - "ref/dotnet/zh-hans/System.Reflection.Context.xml", - "ref/dotnet/es/System.Reflection.Context.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "package/services/metadata/core-properties/263ca61f1b594d9395e210a55a8fe7a7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.DispatchProxy/4.0.0": { - "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.DispatchProxy.nuspec", - "lib/net46/System.Reflection.DispatchProxy.dll", - "lib/DNXCore50/System.Reflection.DispatchProxy.dll", - "lib/netcore50/System.Reflection.DispatchProxy.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.DispatchProxy.dll", - "ref/dotnet/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/dotnet/de/System.Reflection.DispatchProxy.xml", - "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", - "ref/dotnet/it/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/dotnet/es/System.Reflection.DispatchProxy.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit/4.0.0": { - "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.nuspec", - "lib/DNXCore50/System.Reflection.Emit.dll", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.Emit.dll", - "ref/dotnet/System.Reflection.Emit.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.xml", - "ref/dotnet/de/System.Reflection.Emit.xml", - "ref/dotnet/fr/System.Reflection.Emit.xml", - "ref/dotnet/it/System.Reflection.Emit.xml", - "ref/dotnet/ja/System.Reflection.Emit.xml", - "ref/dotnet/ko/System.Reflection.Emit.xml", - "ref/dotnet/ru/System.Reflection.Emit.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.xml", - "ref/dotnet/es/System.Reflection.Emit.xml", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.ILGeneration.nuspec", - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/net45/_._", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", - "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", - "ref/net45/_._", - "ref/wp80/_._", - "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.Lightweight.nuspec", - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/net45/_._", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.Lightweight.dll", - "ref/dotnet/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", - "ref/net45/_._", - "ref/wp80/_._", - "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Extensions/4.0.0": { - "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Extensions.nuspec", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Extensions.dll", - "ref/dotnet/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", - "ref/dotnet/de/System.Reflection.Extensions.xml", - "ref/dotnet/fr/System.Reflection.Extensions.xml", - "ref/dotnet/it/System.Reflection.Extensions.xml", - "ref/dotnet/ja/System.Reflection.Extensions.xml", - "ref/dotnet/ko/System.Reflection.Extensions.xml", - "ref/dotnet/ru/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet/es/System.Reflection.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Metadata/1.0.22": { - "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Metadata.nuspec", - "lib/dotnet/System.Reflection.Metadata.dll", - "lib/dotnet/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Primitives.nuspec", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/dotnet/de/System.Reflection.Primitives.xml", - "ref/dotnet/fr/System.Reflection.Primitives.xml", - "ref/dotnet/it/System.Reflection.Primitives.xml", - "ref/dotnet/ja/System.Reflection.Primitives.xml", - "ref/dotnet/ko/System.Reflection.Primitives.xml", - "ref/dotnet/ru/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.TypeExtensions/4.0.0": { - "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.TypeExtensions.nuspec", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/dotnet/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/dotnet/de/System.Reflection.TypeExtensions.xml", - "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", - "ref/dotnet/it/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", - "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/dotnet/es/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Resources.ResourceManager.nuspec", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/dotnet/de/System.Resources.ResourceManager.xml", - "ref/dotnet/fr/System.Resources.ResourceManager.xml", - "ref/dotnet/it/System.Resources.ResourceManager.xml", - "ref/dotnet/ja/System.Resources.ResourceManager.xml", - "ref/dotnet/ko/System.Resources.ResourceManager.xml", - "ref/dotnet/ru/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime/4.0.20": { - "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.nuspec", - "lib/netcore50/System.Runtime.dll", - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Extensions/4.0.10": { - "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Extensions.nuspec", - "lib/netcore50/System.Runtime.Extensions.dll", - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/dotnet/de/System.Runtime.Extensions.xml", - "ref/dotnet/fr/System.Runtime.Extensions.xml", - "ref/dotnet/it/System.Runtime.Extensions.xml", - "ref/dotnet/ja/System.Runtime.Extensions.xml", - "ref/dotnet/ko/System.Runtime.Extensions.xml", - "ref/dotnet/ru/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Handles/4.0.0": { - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Handles.nuspec", - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/dotnet/de/System.Runtime.Handles.xml", - "ref/dotnet/fr/System.Runtime.Handles.xml", - "ref/dotnet/it/System.Runtime.Handles.xml", - "ref/dotnet/ja/System.Runtime.Handles.xml", - "ref/dotnet/ko/System.Runtime.Handles.xml", - "ref/dotnet/ru/System.Runtime.Handles.xml", - "ref/dotnet/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.InteropServices/4.0.20": { - "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.InteropServices.nuspec", - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.InteropServices.dll", - "ref/dotnet/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet/de/System.Runtime.InteropServices.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.xml", - "ref/dotnet/it/System.Runtime.InteropServices.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet/es/System.Runtime.InteropServices.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/3c944c6b4d6044d28ee80e49a09300c9.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Numerics.nuspec", - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/dotnet/de/System.Runtime.Numerics.xml", - "ref/dotnet/fr/System.Runtime.Numerics.xml", - "ref/dotnet/it/System.Runtime.Numerics.xml", - "ref/dotnet/ja/System.Runtime.Numerics.xml", - "ref/dotnet/ko/System.Runtime.Numerics.xml", - "ref/dotnet/ru/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Serialization.Json/4.0.0": { - "sha512": "emhWMQP3sdtkAhD0TOeP3FfjS57sfQMQ2sqA6f2Yj5Gd9jkHV4KsQ2TsoJjghca6d8fur7+REQ6ILBXVdGf/0g==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Serialization.Json.nuspec", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/DNXCore50/System.Runtime.Serialization.Json.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Serialization.Json.dll", - "ref/dotnet/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/dotnet/de/System.Runtime.Serialization.Json.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Json.xml", - "ref/dotnet/it/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Json.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Json.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/dotnet/es/System.Runtime.Serialization.Json.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/2c520ff333ad4bde986eb7a015ba6343.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Serialization.Primitives/4.0.10": { - "sha512": "NPc8DZIomf5tGjYtz/KTHI01IPcVlypfhCux32AbLPDjTotdvL8TpKRwMyQJ6Kh08yprRVH7uBD1PdJiuoFzag==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Serialization.Primitives.nuspec", - "lib/dotnet/System.Runtime.Serialization.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Serialization.Primitives.dll", - "ref/dotnet/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/92e70054da8743d68462736e85fe5580.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Serialization.Xml/4.0.10": { - "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Serialization.Xml.nuspec", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Serialization.Xml.dll", - "ref/dotnet/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/7d99189e9ae248c9a98d9fc3ccdc5130.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/win81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/a81cabb2b7e843ce801ecf91886941d4.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { - "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/win8/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/0f3b84a81b7a4a97aa765ed058bf6c20.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Security.Claims/4.0.0": { - "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Security.Claims.nuspec", - "lib/dotnet/System.Security.Claims.dll", - "lib/net46/System.Security.Claims.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Security.Claims.dll", - "ref/dotnet/System.Security.Claims.xml", - "ref/dotnet/zh-hant/System.Security.Claims.xml", - "ref/dotnet/de/System.Security.Claims.xml", - "ref/dotnet/fr/System.Security.Claims.xml", - "ref/dotnet/it/System.Security.Claims.xml", - "ref/dotnet/ja/System.Security.Claims.xml", - "ref/dotnet/ko/System.Security.Claims.xml", - "ref/dotnet/ru/System.Security.Claims.xml", - "ref/dotnet/zh-hans/System.Security.Claims.xml", - "ref/dotnet/es/System.Security.Claims.xml", - "ref/net46/System.Security.Claims.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Security.Principal/4.0.0": { - "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Security.Principal.nuspec", - "lib/dotnet/System.Security.Principal.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Security.Principal.dll", - "ref/dotnet/System.Security.Principal.xml", - "ref/dotnet/zh-hant/System.Security.Principal.xml", - "ref/dotnet/de/System.Security.Principal.xml", - "ref/dotnet/fr/System.Security.Principal.xml", - "ref/dotnet/it/System.Security.Principal.xml", - "ref/dotnet/ja/System.Security.Principal.xml", - "ref/dotnet/ko/System.Security.Principal.xml", - "ref/dotnet/ru/System.Security.Principal.xml", - "ref/dotnet/zh-hans/System.Security.Principal.xml", - "ref/dotnet/es/System.Security.Principal.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ServiceModel.Duplex/4.0.0": { - "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ServiceModel.Duplex.nuspec", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/DNXCore50/System.ServiceModel.Duplex.dll", - "lib/net45/_._", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Duplex.dll", - "ref/dotnet/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml", - "ref/dotnet/de/System.ServiceModel.Duplex.xml", - "ref/dotnet/fr/System.ServiceModel.Duplex.xml", - "ref/dotnet/it/System.ServiceModel.Duplex.xml", - "ref/dotnet/ja/System.ServiceModel.Duplex.xml", - "ref/dotnet/ko/System.ServiceModel.Duplex.xml", - "ref/dotnet/ru/System.ServiceModel.Duplex.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml", - "ref/dotnet/es/System.ServiceModel.Duplex.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netcore50/System.ServiceModel.Duplex.xml", - "package/services/metadata/core-properties/8a542ab34ffb4a13958ce3d7279d9dae.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ServiceModel.Http/4.0.10": { - "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ServiceModel.Http.nuspec", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/DNXCore50/System.ServiceModel.Http.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ServiceModel.Http.dll", - "ref/dotnet/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Http.xml", - "ref/dotnet/de/System.ServiceModel.Http.xml", - "ref/dotnet/fr/System.ServiceModel.Http.xml", - "ref/dotnet/it/System.ServiceModel.Http.xml", - "ref/dotnet/ja/System.ServiceModel.Http.xml", - "ref/dotnet/ko/System.ServiceModel.Http.xml", - "ref/dotnet/ru/System.ServiceModel.Http.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Http.xml", - "ref/dotnet/es/System.ServiceModel.Http.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/da6bab8a73fb4ac9af198a5f70d8aa64.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ServiceModel.NetTcp/4.0.0": { - "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ServiceModel.NetTcp.nuspec", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/DNXCore50/System.ServiceModel.NetTcp.dll", - "lib/net45/_._", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.NetTcp.dll", - "ref/dotnet/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/dotnet/de/System.ServiceModel.NetTcp.xml", - "ref/dotnet/fr/System.ServiceModel.NetTcp.xml", - "ref/dotnet/it/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ja/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ko/System.ServiceModel.NetTcp.xml", - "ref/dotnet/ru/System.ServiceModel.NetTcp.xml", - "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/dotnet/es/System.ServiceModel.NetTcp.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.xml", - "package/services/metadata/core-properties/024bb3a15d5444e2b8b485ce4cf44640.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ServiceModel.Primitives/4.0.0": { - "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ServiceModel.Primitives.nuspec", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/DNXCore50/System.ServiceModel.Primitives.dll", - "lib/net45/_._", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Primitives.dll", - "ref/dotnet/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml", - "ref/dotnet/de/System.ServiceModel.Primitives.xml", - "ref/dotnet/fr/System.ServiceModel.Primitives.xml", - "ref/dotnet/it/System.ServiceModel.Primitives.xml", - "ref/dotnet/ja/System.ServiceModel.Primitives.xml", - "ref/dotnet/ko/System.ServiceModel.Primitives.xml", - "ref/dotnet/ru/System.ServiceModel.Primitives.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml", - "ref/dotnet/es/System.ServiceModel.Primitives.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.xml", - "package/services/metadata/core-properties/551694f534894508bee57aba617484c9.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ServiceModel.Security/4.0.0": { - "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ServiceModel.Security.nuspec", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/DNXCore50/System.ServiceModel.Security.dll", - "lib/net45/_._", - "lib/win8/_._", - "ref/dotnet/System.ServiceModel.Security.dll", - "ref/dotnet/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hant/System.ServiceModel.Security.xml", - "ref/dotnet/de/System.ServiceModel.Security.xml", - "ref/dotnet/fr/System.ServiceModel.Security.xml", - "ref/dotnet/it/System.ServiceModel.Security.xml", - "ref/dotnet/ja/System.ServiceModel.Security.xml", - "ref/dotnet/ko/System.ServiceModel.Security.xml", - "ref/dotnet/ru/System.ServiceModel.Security.xml", - "ref/dotnet/zh-hans/System.ServiceModel.Security.xml", - "ref/dotnet/es/System.ServiceModel.Security.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netcore50/System.ServiceModel.Security.xml", - "package/services/metadata/core-properties/724a153019f4439f95c814a98c7503f4.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.Encoding/4.0.10": { - "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.Encoding.nuspec", - "lib/netcore50/System.Text.Encoding.dll", - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/dotnet/de/System.Text.Encoding.xml", - "ref/dotnet/fr/System.Text.Encoding.xml", - "ref/dotnet/it/System.Text.Encoding.xml", - "ref/dotnet/ja/System.Text.Encoding.xml", - "ref/dotnet/ko/System.Text.Encoding.xml", - "ref/dotnet/ru/System.Text.Encoding.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.Encoding.CodePages/4.0.0": { - "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.Encoding.CodePages.nuspec", - "lib/dotnet/System.Text.Encoding.CodePages.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.Encoding.CodePages.dll", - "ref/dotnet/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/dotnet/de/System.Text.Encoding.CodePages.xml", - "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", - "ref/dotnet/it/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", - "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/dotnet/es/System.Text.Encoding.CodePages.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/8a616349cf5c4e6ba7634969c080759b.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.Encoding.Extensions.nuspec", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/dotnet/de/System.Text.Encoding.Extensions.xml", - "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", - "ref/dotnet/it/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", - "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.RegularExpressions/4.0.10": { - "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.RegularExpressions.nuspec", - "lib/dotnet/System.Text.RegularExpressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.RegularExpressions.dll", - "ref/dotnet/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", - "ref/dotnet/de/System.Text.RegularExpressions.xml", - "ref/dotnet/fr/System.Text.RegularExpressions.xml", - "ref/dotnet/it/System.Text.RegularExpressions.xml", - "ref/dotnet/ja/System.Text.RegularExpressions.xml", - "ref/dotnet/ko/System.Text.RegularExpressions.xml", - "ref/dotnet/ru/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet/es/System.Text.RegularExpressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading/4.0.10": { - "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.nuspec", - "lib/DNXCore50/System.Threading.dll", - "lib/netcore50/System.Threading.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/dotnet/de/System.Threading.xml", - "ref/dotnet/fr/System.Threading.xml", - "ref/dotnet/it/System.Threading.xml", - "ref/dotnet/ja/System.Threading.xml", - "ref/dotnet/ko/System.Threading.xml", - "ref/dotnet/ru/System.Threading.xml", - "ref/dotnet/zh-hans/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Overlapped.nuspec", - "lib/netcore50/System.Threading.Overlapped.dll", - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/dotnet/de/System.Threading.Overlapped.xml", - "ref/dotnet/fr/System.Threading.Overlapped.xml", - "ref/dotnet/it/System.Threading.Overlapped.xml", - "ref/dotnet/ja/System.Threading.Overlapped.xml", - "ref/dotnet/ko/System.Threading.Overlapped.xml", - "ref/dotnet/ru/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll", - "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks/4.0.10": { - "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.nuspec", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Threading.Tasks.dll", - "ref/dotnet/System.Threading.Tasks.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.xml", - "ref/dotnet/de/System.Threading.Tasks.xml", - "ref/dotnet/fr/System.Threading.Tasks.xml", - "ref/dotnet/it/System.Threading.Tasks.xml", - "ref/dotnet/ja/System.Threading.Tasks.xml", - "ref/dotnet/ko/System.Threading.Tasks.xml", - "ref/dotnet/ru/System.Threading.Tasks.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet/es/System.Threading.Tasks.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.Dataflow.nuspec", - "lib/dotnet/System.Threading.Tasks.Dataflow.dll", - "lib/dotnet/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.Parallel.nuspec", - "lib/dotnet/System.Threading.Tasks.Parallel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Tasks.Parallel.dll", - "ref/dotnet/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Timer/4.0.0": { - "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Timer.nuspec", - "lib/netcore50/System.Threading.Timer.dll", - "lib/DNXCore50/System.Threading.Timer.dll", - "lib/net451/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Timer.dll", - "ref/dotnet/System.Threading.Timer.xml", - "ref/dotnet/zh-hant/System.Threading.Timer.xml", - "ref/dotnet/de/System.Threading.Timer.xml", - "ref/dotnet/fr/System.Threading.Timer.xml", - "ref/dotnet/it/System.Threading.Timer.xml", - "ref/dotnet/ja/System.Threading.Timer.xml", - "ref/dotnet/ko/System.Threading.Timer.xml", - "ref/dotnet/ru/System.Threading.Timer.xml", - "ref/dotnet/zh-hans/System.Threading.Timer.xml", - "ref/dotnet/es/System.Threading.Timer.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", - "ref/net451/_._", - "ref/win81/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.ReaderWriter/4.0.10": { - "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.ReaderWriter.nuspec", - "lib/dotnet/System.Xml.ReaderWriter.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.ReaderWriter.dll", - "ref/dotnet/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", - "ref/dotnet/de/System.Xml.ReaderWriter.xml", - "ref/dotnet/fr/System.Xml.ReaderWriter.xml", - "ref/dotnet/it/System.Xml.ReaderWriter.xml", - "ref/dotnet/ja/System.Xml.ReaderWriter.xml", - "ref/dotnet/ko/System.Xml.ReaderWriter.xml", - "ref/dotnet/ru/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", - "ref/dotnet/es/System.Xml.ReaderWriter.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.XDocument/4.0.10": { - "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.XDocument.nuspec", - "lib/dotnet/System.Xml.XDocument.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.XDocument.dll", - "ref/dotnet/System.Xml.XDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XDocument.xml", - "ref/dotnet/de/System.Xml.XDocument.xml", - "ref/dotnet/fr/System.Xml.XDocument.xml", - "ref/dotnet/it/System.Xml.XDocument.xml", - "ref/dotnet/ja/System.Xml.XDocument.xml", - "ref/dotnet/ko/System.Xml.XDocument.xml", - "ref/dotnet/ru/System.Xml.XDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XDocument.xml", - "ref/dotnet/es/System.Xml.XDocument.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.XmlDocument/4.0.0": { - "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.XmlDocument.nuspec", - "lib/dotnet/System.Xml.XmlDocument.dll", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.XmlDocument.dll", - "ref/dotnet/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml", - "ref/dotnet/de/System.Xml.XmlDocument.xml", - "ref/dotnet/fr/System.Xml.XmlDocument.xml", - "ref/dotnet/it/System.Xml.XmlDocument.xml", - "ref/dotnet/ja/System.Xml.XmlDocument.xml", - "ref/dotnet/ko/System.Xml.XmlDocument.xml", - "ref/dotnet/ru/System.Xml.XmlDocument.xml", - "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml", - "ref/dotnet/es/System.Xml.XmlDocument.xml", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/89840371bf3f4e0d9ab7b6b34213c74c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.XmlSerializer/4.0.10": { - "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.XmlSerializer.nuspec", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/DNXCore50/System.Xml.XmlSerializer.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.XmlSerializer.dll", - "ref/dotnet/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", - "ref/dotnet/de/System.Xml.XmlSerializer.xml", - "ref/dotnet/fr/System.Xml.XmlSerializer.xml", - "ref/dotnet/it/System.Xml.XmlSerializer.xml", - "ref/dotnet/ja/System.Xml.XmlSerializer.xml", - "ref/dotnet/ko/System.Xml.XmlSerializer.xml", - "ref/dotnet/ru/System.Xml.XmlSerializer.xml", - "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", - "ref/dotnet/es/System.Xml.XmlSerializer.xml", - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/1cffc42bca944f1d81ef3c3abdb0f0be.psmdcp", - "[Content_Types].xml" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0" - ], - "UAP,Version=v10.0": [] - } -} \ No newline at end of file diff --git a/SampleApps/WpfApplication/MainWindow.xaml.cs b/SampleApps/WpfApplication/MainWindow.xaml.cs index ed2d4449..06723d51 100644 --- a/SampleApps/WpfApplication/MainWindow.xaml.cs +++ b/SampleApps/WpfApplication/MainWindow.xaml.cs @@ -11,8 +11,8 @@ namespace WpfApplication { public MainWindow() { - //TileImageLoader.Cache = new MapControl.Caching.ImageFileCache(TileImageLoader.DefaultCacheName, TileImageLoader.DefaultCacheFolder); - //TileImageLoader.Cache = new MapControl.Caching.FileDbCache(TileImageLoader.DefaultCacheName, TileImageLoader.DefaultCacheFolder); + //TileImageLoader.Cache = new MapControl.Caching.ImageFileCache(TileImageLoader.DefaultCacheFolder); + //TileImageLoader.Cache = new MapControl.Caching.FileDbCache(TileImageLoader.DefaultCacheFolder); InitializeComponent(); } @@ -21,8 +21,8 @@ namespace WpfApplication { if (e.ClickCount == 2) { - //map.ZoomMap(e.GetPosition(map), Math.Floor(map.ZoomLevel + 1.5)); map.TargetCenter = map.ViewportPointToLocation(e.GetPosition(map)); + //map.ZoomMap(e.GetPosition(map), Math.Floor(map.ZoomLevel + 1.5)); //map.ZoomToBounds(new BoundingBox(53, 7, 54, 9)); } } diff --git a/SampleApps/WpfApplication/Properties/AssemblyInfo.cs b/SampleApps/WpfApplication/Properties/AssemblyInfo.cs index e85c3219..0a8d5518 100644 --- a/SampleApps/WpfApplication/Properties/AssemblyInfo.cs +++ b/SampleApps/WpfApplication/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ using System.Runtime.InteropServices; [assembly: AssemblyCompany("Clemens Fischer")] [assembly: AssemblyCopyright("© 2017 Clemens Fischer")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("3.4.1")] -[assembly: AssemblyFileVersion("3.4.1")] +[assembly: AssemblyVersion("4.0.0")] +[assembly: AssemblyFileVersion("4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/SampleApps/WpfApplication/WpfApplication.csproj b/SampleApps/WpfApplication/WpfApplication.csproj index 921925e5..8e2bcd77 100644 --- a/SampleApps/WpfApplication/WpfApplication.csproj +++ b/SampleApps/WpfApplication/WpfApplication.csproj @@ -1,10 +1,10 @@  - + Debug AnyCPU - {9949326E-9261-4F95-89B1-151F60498951} + {F92DA93D-75DB-4308-A5F9-6B4C3908A675} WinExe Properties WpfApplication @@ -13,6 +13,7 @@ 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 + true @@ -24,21 +25,18 @@ DEBUG;TRACE prompt 4 - false AnyCPU - none + pdbonly true bin\Release\ TRACE prompt 4 - false - 4.0 @@ -52,16 +50,16 @@ MSBuild:Compile Designer - - MapLayers.cs - - - MapViewModel.cs - MSBuild:Compile Designer + + MapLayers.cs + + + MapViewModel.cs + App.xaml Code @@ -84,20 +82,16 @@ - {ef44f661-b98a-4676-927f-85d138f82300} + {ad1cb53e-7aa4-4ec0-b901-b4e0e2665133} FileDbCache.WPF - - {86470440-fee2-4120-af5a-3762fb9c536f} - ImageFileCache.WPF - - - {226f3575-b683-446d-a2f0-181291dc8787} + + {a204a102-c745-4d65-aec8-7b96faedef2d} MapControl.WPF - + 10_535_330.jpg