diff --git a/UICompositionAnimations/Behaviours/AcrylicEffectHelper.cs b/UICompositionAnimations/Behaviours/AcrylicEffectHelper.cs index cc9f837..32ba1e0 100644 --- a/UICompositionAnimations/Behaviours/AcrylicEffectHelper.cs +++ b/UICompositionAnimations/Behaviours/AcrylicEffectHelper.cs @@ -36,7 +36,7 @@ public static async Task ConcatenateEffectWithTintAndBorderAsyn [NotNull] Compositor compositor, [NotNull] IGraphicsEffectSource source, [NotNull] IDictionary parameters, Color color, float colorMix, - [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, CacheLoadingMode options) + [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, BitmapCacheMode options) { // Setup the tint effect ArithmeticCompositeEffect tint = new ArithmeticCompositeEffect @@ -50,8 +50,8 @@ public static async Task ConcatenateEffectWithTintAndBorderAsyn // Get the noise brush using Win2D CompositionSurfaceBrush noiseBitmap = canvas == null - ? await Win2DImageHelper.LoadImageAsync(compositor, uri, options) - : await Win2DImageHelper.LoadImageAsync(compositor, canvas, uri, options); + ? await Win2DImageHelper.LoadImageAsync(compositor, uri, options, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound) + : await Win2DImageHelper.LoadImageAsync(compositor, canvas, uri, options, BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound); // Make sure the Win2D brush was loaded correctly if (noiseBitmap != null) diff --git a/UICompositionAnimations/Behaviours/AttachedCompositionEffectFactory.cs b/UICompositionAnimations/Behaviours/AttachedCompositionEffectFactory.cs index 80351cc..548734c 100644 --- a/UICompositionAnimations/Behaviours/AttachedCompositionEffectFactory.cs +++ b/UICompositionAnimations/Behaviours/AttachedCompositionEffectFactory.cs @@ -94,7 +94,7 @@ public static async ValueTask> AttachComposit public static async Task> AttachCompositionInAppCustomAcrylicEffectAsync( [NotNull] this TSource element, [NotNull] T target, float blur, int ms, Color color, float colorMix, float? saturation, [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, - CacheLoadingMode options = CacheLoadingMode.EnableCaching, bool fadeIn = false, bool disposeOnUnload = false) + BitmapCacheMode options = BitmapCacheMode.EnableCaching, bool fadeIn = false, bool disposeOnUnload = false) where TSource : FrameworkElement where T : FrameworkElement { @@ -213,7 +213,7 @@ public static async ValueTask> AttachComposit [ItemNotNull] public static async Task> AttachCompositionCustomAcrylicEffectAsync( [NotNull] this T element, Color color, float colorMix, - [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, CacheLoadingMode options = CacheLoadingMode.EnableCaching, bool disposeOnUnload = false) + [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, BitmapCacheMode options = BitmapCacheMode.EnableCaching, bool disposeOnUnload = false) where T : FrameworkElement { // Percentage check @@ -289,7 +289,7 @@ public static async Task> AttachCompositionCu public static async Task> AttachCompositionCustomAcrylicToggleEffectAsync( [NotNull] this T element, Color color, float inAppColorMix, float hostColorMix, AcrylicEffectMode mode, float blur, int ms, - [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, CacheLoadingMode options = CacheLoadingMode.EnableCaching, bool disposeOnUnload = false) + [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, BitmapCacheMode options = BitmapCacheMode.EnableCaching, bool disposeOnUnload = false) where T : FrameworkElement { // Percentage check @@ -511,7 +511,7 @@ public static async Task> AttachCompositi [NotNull] this TSource element, [NotNull] T target, float on, float off, bool initiallyVisible, Color color, float colorMix, [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, - CacheLoadingMode options = CacheLoadingMode.EnableCaching, bool disposeOnUnload = false) + BitmapCacheMode options = BitmapCacheMode.EnableCaching, bool disposeOnUnload = false) where TSource : FrameworkElement where T : FrameworkElement { @@ -584,7 +584,7 @@ public static async Task> Attach float onSaturation, float offSaturation, bool initiallyVisible, Color color, float colorMix, [CanBeNull] CanvasControl canvas, [NotNull] Uri uri, - CacheLoadingMode options = CacheLoadingMode.EnableCaching, bool disposeOnUnload = false) + BitmapCacheMode options = BitmapCacheMode.EnableCaching, bool disposeOnUnload = false) where TSource : FrameworkElement where T : FrameworkElement { diff --git a/UICompositionAnimations/Brushes/CustomAcrylicBrush.cs b/UICompositionAnimations/Brushes/CustomAcrylicBrush.cs index d60dd76..db3a515 100644 --- a/UICompositionAnimations/Brushes/CustomAcrylicBrush.cs +++ b/UICompositionAnimations/Brushes/CustomAcrylicBrush.cs @@ -212,7 +212,7 @@ private static async void OnUnsupportedEffectFallbackColorPropertyChanged(Depend /// /// Gets or sets the caching setting for the acrylic brush /// - public CacheLoadingMode CacheMode { get; set; } = CacheLoadingMode.EnableCaching; + public BitmapCacheMode CacheMode { get; set; } = BitmapCacheMode.EnableCaching; #endregion diff --git a/UICompositionAnimations/Enums/CacheLoadingMode.cs b/UICompositionAnimations/Enums/BitmapCacheMode.cs similarity index 95% rename from UICompositionAnimations/Enums/CacheLoadingMode.cs rename to UICompositionAnimations/Enums/BitmapCacheMode.cs index 21a426a..a50b52b 100644 --- a/UICompositionAnimations/Enums/CacheLoadingMode.cs +++ b/UICompositionAnimations/Enums/BitmapCacheMode.cs @@ -3,7 +3,7 @@ /// /// Indicates the cache mode to use when loading an item /// - public enum CacheLoadingMode + public enum BitmapCacheMode { /// /// The new item will be either loaded from the cache when possible, or saved in the cache for future use diff --git a/UICompositionAnimations/Enums/BitmapDPIMode.cs b/UICompositionAnimations/Enums/BitmapDPIMode.cs new file mode 100644 index 0000000..dac988d --- /dev/null +++ b/UICompositionAnimations/Enums/BitmapDPIMode.cs @@ -0,0 +1,28 @@ +namespace UICompositionAnimations.Enums +{ + /// + /// Indicates the DPI mode to use to load an image + /// + public enum BitmapDPIMode + { + /// + /// Uses the original DPI settings of the loaded image + /// + UseSourceDPI, + + /// + /// Uses the default value of 96 DPI + /// + Default96DPI, + + /// + /// Overrides the image DPI settings with the current screen DPI value + /// + CopyDisplayDPISetting, + + /// + /// Overrides the image DPI settings with the current screen DPI value and ensures the resulting value is at least 96 + /// + CopyDisplayDPISettingsWith96AsLowerBound + } +} \ No newline at end of file diff --git a/UICompositionAnimations/Helpers/Win2DImageHelper.cs b/UICompositionAnimations/Helpers/Win2DImageHelper.cs index 7ad83b4..6ed5d27 100644 --- a/UICompositionAnimations/Helpers/Win2DImageHelper.cs +++ b/UICompositionAnimations/Helpers/Win2DImageHelper.cs @@ -5,6 +5,7 @@ using System.Threading.Tasks; using Windows.Foundation; using Windows.Graphics.DirectX; +using Windows.Graphics.Display; using Windows.Graphics.Imaging; using Windows.UI; using Windows.UI.Composition; @@ -44,11 +45,12 @@ public static class Win2DImageHelper /// Loads a instance with the target image from the shared instance /// /// The path to the image to load + /// Indicates the desired DPI mode to use when loading the image [PublicAPI] [Pure, ItemCanBeNull] - public static Task LoadImageAsync([NotNull] Uri uri) + public static Task LoadImageAsync([NotNull] Uri uri, BitmapDPIMode dpiMode) { - return LoadImageAsync(Window.Current.Compositor, uri, CacheLoadingMode.DisableCaching); + return LoadImageAsync(Window.Current.Compositor, uri, BitmapCacheMode.DisableCaching, dpiMode); } /// @@ -56,11 +58,12 @@ public static Task LoadImageAsync([NotNull] Uri uri) /// /// The to use to load the target image /// The path to the image to load + /// Indicates the desired DPI mode to use when loading the image [PublicAPI] [Pure, ItemCanBeNull] - internal static Task LoadImageAsync([NotNull] this CanvasControl canvas, [NotNull] Uri uri) + public static Task LoadImageAsync([NotNull] this CanvasControl canvas, [NotNull] Uri uri, BitmapDPIMode dpiMode) { - return LoadImageAsync(Window.Current.Compositor, canvas, uri, CacheLoadingMode.DisableCaching); + return LoadImageAsync(Window.Current.Compositor, canvas, uri, BitmapCacheMode.DisableCaching, dpiMode); } /// @@ -90,12 +93,35 @@ public static async Task> ClearCacheAsync() /// The compositor instance to use to create the final brush /// The device to use to process the Win2D image /// The path to the image to load + /// Indicates the desired DPI mode to use when loading the image [ItemNotNull] private static async Task LoadSurfaceBrushAsync([NotNull] ICanvasResourceCreator creator, - [NotNull] Compositor compositor, [NotNull] CanvasDevice canvasDevice, [NotNull] Uri uri) + [NotNull] Compositor compositor, [NotNull] CanvasDevice canvasDevice, [NotNull] Uri uri, BitmapDPIMode dpiMode) { - using (CanvasBitmap bitmap = await CanvasBitmap.LoadAsync(creator, uri)) + CanvasBitmap bitmap = null; + try { + // Load the bitmap with the appropriate settings + switch (dpiMode) + { + case BitmapDPIMode.UseSourceDPI: + bitmap = await CanvasBitmap.LoadAsync(creator, uri); + break; + case BitmapDPIMode.Default96DPI: + bitmap = await CanvasBitmap.LoadAsync(creator, uri, 96); + break; + case BitmapDPIMode.CopyDisplayDPISetting: + float dpi = DisplayInformation.GetForCurrentView().LogicalDpi; + bitmap = await CanvasBitmap.LoadAsync(creator, uri, dpi); + break; + case BitmapDPIMode.CopyDisplayDPISettingsWith96AsLowerBound: + dpi = DisplayInformation.GetForCurrentView().LogicalDpi; + bitmap = await CanvasBitmap.LoadAsync(creator, uri, dpi >= 96 ? dpi : 96); + break; + default: + throw new ArgumentOutOfRangeException("Unsupported DPI mode"); + } + // Get the device and the target surface CompositionGraphicsDevice device = CanvasComposition.CreateCompositionGraphicsDevice(compositor, canvasDevice); CompositionDrawingSurface surface = device.CreateDrawingSurface(default(Size), @@ -116,6 +142,11 @@ private static async Task LoadSurfaceBrushAsync([NotNul return brush; } } + finally + { + // Manual using block to allow the initial switch statement + bitmap?.Dispose(); + } } /// @@ -125,9 +156,10 @@ private static async Task LoadSurfaceBrushAsync([NotNul /// The to use to load the target image /// The path to the image to load /// Indicates whether or not to force the reload of the Win2D image + /// Indicates the desired DPI mode to use when loading the image [ItemCanBeNull] internal static async Task LoadImageAsync( - [NotNull] Compositor compositor, [NotNull] CanvasControl canvas, [NotNull] Uri uri, CacheLoadingMode options) + [NotNull] Compositor compositor, [NotNull] CanvasControl canvas, [NotNull] Uri uri, BitmapCacheMode options, BitmapDPIMode dpiMode) { TaskCompletionSource tcs = new TaskCompletionSource(); async Task LoadImageAsync(bool shouldThrow) @@ -135,7 +167,7 @@ async Task LoadImageAsync(bool shouldThrow) // Load the image - this will only succeed when there's an available Win2D device try { - return await LoadSurfaceBrushAsync(canvas, compositor, canvas.Device, uri); + return await LoadSurfaceBrushAsync(canvas, compositor, canvas.Device, uri, dpiMode); } catch when (!shouldThrow) { @@ -167,7 +199,7 @@ async void Canvas_CreateResources(CanvasControl sender, CanvasCreateResourcesEve // Lock the semaphore and check the cache first await Win2DSemaphore.WaitAsync(); - if (options == CacheLoadingMode.EnableCaching && SurfacesCache.TryGetValue(uri, out CompositionSurfaceBrush cached)) + if (options == BitmapCacheMode.EnableCaching && SurfacesCache.TryGetValue(uri, out CompositionSurfaceBrush cached)) { Win2DSemaphore.Release(); return cached; @@ -195,7 +227,7 @@ async void Canvas_CreateResources(CanvasControl sender, CanvasCreateResourcesEve // Cache when needed and return the result if (instance != null && - options != CacheLoadingMode.DisableCaching && + options != BitmapCacheMode.DisableCaching && !SurfacesCache.ContainsKey(uri)) SurfacesCache.Add(uri, instance); Win2DSemaphore.Release(); return instance; @@ -207,9 +239,10 @@ async void Canvas_CreateResources(CanvasControl sender, CanvasCreateResourcesEve /// The compositor to use to render the Win2D image /// The path to the image to load /// Indicates whether or not to force the reload of the Win2D image + /// Indicates the desired DPI mode to use when loading the image [ItemCanBeNull] internal static async Task LoadImageAsync( - [NotNull] Compositor compositor, [NotNull] Uri uri, CacheLoadingMode options) + [NotNull] Compositor compositor, [NotNull] Uri uri, BitmapCacheMode options, BitmapDPIMode dpiMode) { // Fix the Uri if it has been generated by the XAML designer if (uri.Scheme.Equals("ms-resource")) @@ -222,7 +255,7 @@ internal static async Task LoadImageAsync( // Lock the semaphore and check the cache first await Win2DSemaphore.WaitAsync(); - if (options == CacheLoadingMode.EnableCaching && SurfacesCache.TryGetValue(uri, out CompositionSurfaceBrush cached)) + if (options == BitmapCacheMode.EnableCaching && SurfacesCache.TryGetValue(uri, out CompositionSurfaceBrush cached)) { Win2DSemaphore.Release(); return cached; @@ -234,7 +267,7 @@ internal static async Task LoadImageAsync( { // This will throw and the canvas will re-initialize the Win2D device if needed CanvasDevice sharedDevice = CanvasDevice.GetSharedDevice(); - brush = await LoadSurfaceBrushAsync(sharedDevice, compositor, sharedDevice, uri); + brush = await LoadSurfaceBrushAsync(sharedDevice, compositor, sharedDevice, uri, dpiMode); } catch { @@ -244,7 +277,7 @@ internal static async Task LoadImageAsync( // Cache when needed and return the result if (brush != null && - options != CacheLoadingMode.DisableCaching && + options != BitmapCacheMode.DisableCaching && !SurfacesCache.ContainsKey(uri)) SurfacesCache.Add(uri, brush); Win2DSemaphore.Release(); return brush; diff --git a/UICompositionAnimations/Properties/AssemblyInfo.cs b/UICompositionAnimations/Properties/AssemblyInfo.cs index fa6f7e4..80545d9 100644 --- a/UICompositionAnimations/Properties/AssemblyInfo.cs +++ b/UICompositionAnimations/Properties/AssemblyInfo.cs @@ -23,6 +23,6 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.8.4.0")] +[assembly: AssemblyVersion("2.9.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/UICompositionAnimations/UICompositionAnimations.csproj b/UICompositionAnimations/UICompositionAnimations.csproj index 5173662..cbdfda8 100644 --- a/UICompositionAnimations/UICompositionAnimations.csproj +++ b/UICompositionAnimations/UICompositionAnimations.csproj @@ -128,7 +128,8 @@ - + + diff --git a/UICompositionAnimations/UICompositionAnimations.nuspec b/UICompositionAnimations/UICompositionAnimations.nuspec index 8ff87a4..eeb9cbc 100644 --- a/UICompositionAnimations/UICompositionAnimations.nuspec +++ b/UICompositionAnimations/UICompositionAnimations.nuspec @@ -2,14 +2,14 @@ Sergio0694.UWP.UICompositionAnimations - 2.8.4.0 + 2.9.0.0 UICompositionAnimations A wrapper UWP PCL to work with Windows.UI.Composition and XAML animations, and Win2D effects Sergio Pedri Sergio Pedri https://github.com/Sergio0694/UICompositionAnimations false - Custom acrylic brush fallback mode improved, bug fixes + New APIs available, bug fixes and code refactoring Copyright 2017 uwp composition animations xaml csharp windows winrt universal app ui win2d graphics diff --git a/UICompositionAnimations/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/UICompositionAnimations/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index 4aff1e7..0000000 Binary files a/UICompositionAnimations/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs deleted file mode 100644 index e69de29..0000000 diff --git a/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs deleted file mode 100644 index e69de29..0000000 diff --git a/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/UICompositionAnimations/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs deleted file mode 100644 index e69de29..0000000 diff --git a/UICompositionAnimations/project.lock.json b/UICompositionAnimations/project.lock.json deleted file mode 100644 index 46f34e7..0000000 --- a/UICompositionAnimations/project.lock.json +++ /dev/null @@ -1,24603 +0,0 @@ -{ - "version": 2, - "targets": { - "UAP,Version=v10.0": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Core.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Net.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Numerics.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Windows.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.Xml.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/System.dll": { - "assetType": "runtime", - "rid": "aot" - }, - "runtimes/aot/lib/netcore50/mscorlib.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": { - "assetType": "runtime", - "rid": "win7" - } - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/_._": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/_._": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8-aot" - }, - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": { - "assetType": "runtime", - "rid": "win8" - } - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - }, - "runtimeTargets": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "assetType": "runtime", - "rid": "win8" - } - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Threading.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtimeTargets": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": { - "assetType": "runtime", - "rid": "aot" - } - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtimeTargets": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-arm" - }, - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x64" - }, - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": { - "assetType": "native", - "rid": "win10-x86" - } - } - } - }, - "UAP,Version=v10.0/win10-arm": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win8-arm.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll": {} - }, - "native": { - "runtimes/win8-arm/native/System.Private.CoreLib.ni.dll": {}, - "runtimes/win8-arm/native/clretwrc.dll": {}, - "runtimes/win8-arm/native/coreclr.dll": {}, - "runtimes/win8-arm/native/dbgshim.dll": {}, - "runtimes/win8-arm/native/mscordaccore.dll": {}, - "runtimes/win8-arm/native/mscordbi.dll": {}, - "runtimes/win8-arm/native/mscorlib.ni.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {}, - "runtimes/win8-arm/native/sos.dll": {} - } - }, - "runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "native": { - "runtimes/win8-arm/native/clrcompression.dll": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm-aot": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package" - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.aot.System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.0.10": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.0.20": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "compile": { - "runtimes/win10-arm-aot/lib/netcore50/_._": {} - }, - "runtime": { - "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win8-arm-aot/lib/netstandard1.0/_._": {} - }, - "native": { - "runtimes/win8-arm-aot/native/_._": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Collections": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tracing": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.aot.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Primitives": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Resources.ResourceManager": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.aot.System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.aot.System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7-x64.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x64/native/clrjit.dll": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {} - }, - "native": { - "runtimes/win7-x64/native/System.Private.CoreLib.ni.dll": {}, - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorlib.ni.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {}, - "runtimes/win7-x64/native/sos.dll": {} - } - }, - "runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "native": { - "runtimes/win7-x64/native/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64-aot": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.aot.System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.0.10": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.0.20": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "compile": { - "runtimes/win10-x64-aot/lib/netcore50/_._": {} - }, - "runtime": { - "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x64-aot/native/_._": {} - } - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win7-x64-aot/lib/netstandard1.0/_._": {} - }, - "native": { - "runtimes/win7-x64-aot/native/_._": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Collections": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tracing": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.aot.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Primitives": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Resources.ResourceManager": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.aot.System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.aot.System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.any.System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7-x86.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x86/native/clrjit.dll": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {}, - "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {} - }, - "native": { - "runtimes/win7-x86/native/System.Private.CoreLib.ni.dll": {}, - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorlib.ni.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {}, - "runtimes/win7-x86/native/sos.dll": {} - } - }, - "runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "native": { - "runtimes/win7-x86/native/clrcompression.dll": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Collections": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Diagnostics.Tracing": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.any.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.any.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Extensions": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Reflection.Primitives": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.any.System.Resources.ResourceManager": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.any.System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.any.System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.any.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.any.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86-aot": { - "JetBrains.Annotations/10.4.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard1.0/JetBrains.Annotations.dll": {} - } - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "type": "package", - "dependencies": { - "Microsoft.Net.Native.SharedLibrary-arm": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x64": "1.6.1", - "Microsoft.Net.Native.SharedLibrary-x86": "1.6.1" - }, - "build": { - "build/Microsoft.Net.Native.Compiler.props": {}, - "build/Microsoft.Net.Native.Compiler.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-arm.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-arm.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x64.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x64.targets": {} - } - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "type": "package", - "build": { - "build/Microsoft.Net.Native.SharedLibrary-x86.props": {}, - "build/Microsoft.Net.Native.SharedLibrary-x86.targets": {} - } - }, - "Microsoft.NETCore/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.VisualBasic": "10.0.1", - "System.AppContext": "4.1.0", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.Immutable": "1.2.0", - "System.ComponentModel": "4.0.1", - "System.ComponentModel.Annotations": "4.1.0", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.Tracing": "4.1.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.Globalization.Extensions": "4.0.1", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.1", - "System.IO.Compression.ZipFile": "4.0.1", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.IO.UnmanagedMemoryStream": "4.0.1", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Parallel": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.NetworkInformation": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Numerics.Vectors": "4.1.1", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Metadata": "1.3.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Claims": "4.0.1", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Dataflow": "4.6.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - } - }, - "Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "dependencies": { - "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3" - } - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - }, - "compile": { - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/mscorlib.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/mscorlib.dll": {} - } - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Jit": "1.0.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2" - } - }, - "Microsoft.NETCore.Targets/1.0.2": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "type": "package", - "dependencies": { - "Microsoft.NETCore": "5.0.2", - "Microsoft.NETCore.Portable.Compatibility": "1.0.2", - "Microsoft.NETCore.Runtime.CoreCLR": "1.0.3", - "Microsoft.NETCore.Targets": "1.0.2", - "Microsoft.Net.Native.Compiler": "1.6.2", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Data.Common": "4.1.0", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.StackTrace": "4.0.2", - "System.IO.IsolatedStorage": "4.0.1", - "System.Net.Http.Rtc": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Requests": "4.0.11", - "System.Net.Sockets": "4.1.0", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.Numerics.Vectors.WindowsRuntime": "4.0.1", - "System.Reflection.Context": "4.0.1", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.Serialization.Json": "4.0.3", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.2", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1", - "System.ServiceModel.Duplex": "4.0.1", - "System.ServiceModel.Http": "4.1.0", - "System.ServiceModel.NetTcp": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.ServiceModel.Security": "4.0.1", - "System.Text.Encoding.CodePages": "4.0.1", - "System.Threading.Overlapped": "4.0.1", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, - "Microsoft.VisualBasic/10.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.Microsoft.Win32.Primitives": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.aot.System.Collections/4.0.10": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Collections.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tools/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.aot.System.Diagnostics.Tracing/4.0.20": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.aot.System.Globalization/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "runtime.aot.System.Globalization.Calendars/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "runtime.aot.System.IO/4.1.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.IO.dll": {} - } - }, - "runtime.aot.System.Reflection/4.0.10": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "runtime.aot.System.Reflection.Extensions/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "runtime.aot.System.Reflection.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "runtime.aot.System.Resources.ResourceManager/4.0.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.aot.System.Runtime/4.0.20": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "runtime.aot.System.Runtime.Handles/4.0.1": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "runtime.aot.System.Runtime.InteropServices/4.0.20": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.aot.System.Text.Encoding/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.aot.System.Threading.Tasks/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "runtime.aot.System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "4.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Net.NameResolution": "4.0.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Overlapped": "4.0.1", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.0.1" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": { - "type": "package", - "compile": { - "runtimes/win10-x86-aot/lib/netcore50/_._": {} - }, - "runtime": { - "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "type": "package", - "native": { - "runtimes/win7-x86-aot/native/_._": {} - } - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/win7-x86-aot/lib/netstandard1.0/_._": {} - }, - "native": { - "runtimes/win7-x86-aot/native/_._": {} - } - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.AppContext/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.AppContext.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Buffers/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.Collections/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Collections": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Collections.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Collections.Concurrent/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.2.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.0.1", - "System.Globalization": "4.0.11", - "System.Globalization.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel": "4.0.1", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Data.Common/4.1.0": { - "type": "package", - "compile": { - "ref/netstandard1.2/System.Data.Common.dll": {} - }, - "runtime": { - "lib/netstandard1.2/System.Data.Common.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Diagnostics.Debug": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tools": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Diagnostics.Tracing/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Diagnostics.Tracing": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Globalization.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Globalization.Calendars/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Runtime": "4.1.0", - "runtime.aot.System.Globalization.Calendars": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.aot.System.IO": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.IO.Compression/4.1.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.native.System.IO.Compression": "4.1.0" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", - "dependencies": { - "System.Buffers": "4.0.0", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.IO.FileSystem": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.IsolatedStorage/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.IO.IsolatedStorage.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.IsolatedStorage.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.DiagnosticSource": "4.0.0", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.Http.Rtc/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Net.Http": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {} - } - }, - "System.Net.NameResolution/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {} - } - }, - "System.Net.NetworkInformation/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.Win32.Primitives": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.win.System.Net.Primitives": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Net.Requests/4.0.11": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Net.Requests.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {} - } - }, - "System.Net.Sockets/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "runtime.win.System.Net.Sockets": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {} - } - }, - "System.Net.WebSockets/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Net.WebSockets.dll": {} - } - }, - "System.Net.WebSockets.Client/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Net.WebSockets.Client.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {} - } - }, - "System.Numerics.Vectors/4.1.1": { - "type": "package", - "compile": { - "ref/netstandard1.0/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {} - } - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Numerics.Vectors": "4.1.1", - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {} - } - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ObjectModel.dll": {} - } - }, - "System.Private.DataContractSerialization/4.1.2": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.2", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} - } - }, - "System.Private.ServiceModel/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Collections.NonGeneric": "4.0.1", - "System.Collections.Specialized": "4.0.1", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.Compression": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.Linq.Queryable": "4.0.1", - "System.Net.Http": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Net.WebSockets": "4.0.0", - "System.Net.WebSockets.Client": "4.0.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.DispatchProxy": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Runtime.WindowsRuntime": "4.0.11", - "System.Security.Claims": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Timer": "4.0.1", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1", - "System.Xml.XmlSerializer": "4.0.11" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {} - } - }, - "System.Private.Uri/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.win7.System.Private.Uri": "4.0.2" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection": "4.0.10" - }, - "compile": { - "ref/netcore50/System.Reflection.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Context/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/_._": {} - } - }, - "System.Reflection.Extensions/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.Metadata/1.3.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "1.2.0" - }, - "compile": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Reflection.Primitives": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "runtime.aot.System.Resources.ResourceManager": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "runtime.aot.System.Runtime": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Extensions/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.win.System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.Handles/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Runtime.Handles": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "runtime.aot.System.Runtime.InteropServices": "4.0.20" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.1": { - "type": "package", - "dependencies": { - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Json/4.0.3": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Json.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "type": "package", - "dependencies": { - "System.IO": "4.1.0", - "System.Private.DataContractSerialization": "4.1.2", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.Serialization.Xml.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Runtime.WindowsRuntime": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - }, - "runtime": { - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} - } - }, - "System.Security.Claims/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Security.Principal": "4.0.1" - }, - "compile": { - "ref/netstandard1.3/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Claims.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Collections.Concurrent": "4.0.12", - "System.Linq": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "runtime.native.System.Security.Cryptography": "4.0.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Globalization.Calendars": "4.0.1", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Runtime.Numerics": "4.0.1", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Security.Cryptography.Cng": "4.2.0", - "System.Security.Cryptography.Encoding": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Principal/4.0.1": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.ServiceModel.Duplex/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.ServiceModel.Primitives": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Net.WebHeaderCollection": "4.0.1", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0", - "System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.1.0": { - "type": "package", - "dependencies": { - "System.Net.Primitives": "4.0.11", - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.ComponentModel.EventBasedAsync": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Net.Primitives": "4.0.11", - "System.ObjectModel": "4.0.12", - "System.Private.ServiceModel": "4.1.0", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.Security.Cryptography.X509Certificates": "4.1.0", - "System.Security.Principal": "4.0.1", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Primitives.dll": {} - } - }, - "System.ServiceModel.Security/4.0.1": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.1.0", - "System.Runtime": "4.1.0", - "System.Runtime.Serialization.Xml": "4.1.1", - "System.ServiceModel.Primitives": "4.1.0" - }, - "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netcore50/System.ServiceModel.Security.dll": {} - } - }, - "System.Text.Encoding/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Text.Encoding": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "runtime.aot.System.Text.Encoding.Extensions": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Text.RegularExpressions/4.1.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.11": { - "type": "package", - "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Handles": "4.0.1", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.11": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/win8/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "compile": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - }, - "runtime": { - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Concurrent": "4.0.12", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tracing": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "runtime.aot.System.Threading.Timer": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/win81/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.IO.FileSystem": "4.0.1", - "System.IO.FileSystem.Primitives": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading.Tasks": "4.0.11", - "System.Threading.Tasks.Extensions": "4.0.0" - }, - "compile": { - "ref/netcore50/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netcore50/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netcore50/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.0.1": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "dependencies": { - "System.Collections": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XmlDocument": "4.0.1" - }, - "compile": { - "ref/netcore50/System.Xml.XmlSerializer.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} - } - }, - "Win2D.uwp/1.21.0": { - "type": "package", - "compile": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "runtime": { - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd": {} - }, - "native": { - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll": {} - } - } - } - }, - "libraries": { - "JetBrains.Annotations/10.4.0": { - "sha512": "BHOL9R1ueuzAJTHvWpczsxCFoKBzv2ya3zC7mvj4Rp1HkFNSMZOPTNSYSwwTmva/Lv3DHmqOTZ50IBOQh8Lg1g==", - "type": "package", - "path": "jetbrains.annotations/10.4.0", - "files": [ - "jetbrains.annotations.10.4.0.nupkg.sha512", - "jetbrains.annotations.nuspec", - "lib/net/JetBrains.Annotations.dll", - "lib/net/JetBrains.Annotations.xml", - "lib/netstandard1.0/JetBrains.Annotations.dll", - "lib/netstandard1.0/JetBrains.Annotations.xml", - "lib/portable-net4+sl4+wp7+netcore45/JetBrains.Annotations.dll", - "lib/portable-net4+sl4+wp7+netcore45/JetBrains.Annotations.xml", - "lib/portable-net4+sl5+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/JetBrains.Annotations.dll", - "lib/portable-net4+sl5+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1/JetBrains.Annotations.xml" - ] - }, - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "type": "package", - "path": "microsoft.csharp/4.0.1", - "files": [ - "Microsoft.CSharp.4.0.1.nupkg.sha512", - "Microsoft.CSharp.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Net.Native.Compiler/1.6.2": { - "sha512": "28VesDpHpRatYNlydGB2JbCpjOo2Ils4v2J/O46lHKpLgmCrf6UzAwWnUZq5fhLzJETWb+a0AlENY3hABASQEg==", - "type": "package", - "path": "microsoft.net.native.compiler/1.6.2", - "files": [ - "build/Microsoft.Net.Native.Compiler.props", - "build/Microsoft.Net.Native.Compiler.targets", - "microsoft.net.native.compiler.1.6.2.nupkg.sha512", - "microsoft.net.native.compiler.nuspec", - "tools/LibraryXML/Callisto.rd.xml", - "tools/LibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", - "tools/LibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", - "tools/LibraryXML/HugeFlow.Common.rd.xml", - "tools/LibraryXML/JulMar.Windows.Interactivity.rd.xml", - "tools/LibraryXML/MarkedUp.rd.xml", - "tools/LibraryXML/Microsoft.ApplicationInsights.rd.xml", - "tools/LibraryXML/Microsoft.PlayerFramework.rd.xml", - "tools/LibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", - "tools/LibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", - "tools/LibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", - "tools/LibraryXML/MonoGame.Framework.rd.xml", - "tools/LibraryXML/MyToolkit.rd.xml", - "tools/LibraryXML/Newtonsoft.Json.rd.xml", - "tools/LibraryXML/SharpDX.DXGI.rd.xml", - "tools/LibraryXML/SharpDX.Direct2D1.rd.xml", - "tools/LibraryXML/SharpDX.rd.xml", - "tools/LibraryXML/System.Reactive.Core.rd.xml", - "tools/LibraryXML/System.Reactive.Linq.rd.xml", - "tools/LibraryXML/System.Reactive.PlatformServices.rd.xml", - "tools/LibraryXML/Telerik.Core.rd.xml", - "tools/LibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", - "tools/LibraryXML/UnityEngine.rd.xml", - "tools/LibraryXML/WinRT.Triggers.rd.xml", - "tools/LibraryXML/WinRTXamlToolkit.rd.xml", - "tools/LibraryXML/protobuf-net.rd.xml", - "tools/Microsoft.NetNative.Settings.targets", - "tools/Microsoft.NetNative.targets", - "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/Microsoft.NETNative.Analyzer.1.0.0.nupkg", - "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/Microsoft.NETNative.Analyzer.1.0.0.nupkg.sha512", - "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/analyzers/dotnet/cs/NativeGatekeeper.dll", - "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/install.ps1", - "tools/Packages/Microsoft.NETNative.Analyzer/1.0.0/tools/uninstall.ps1", - "tools/Runtime/arm/CommandProvider.dll", - "tools/Runtime/arm/Microsoft.NET.Native.Runtime.1.6.appx", - "tools/Runtime/arm/SymbolProvider.dll", - "tools/Runtime/arm/mrt100_app.pdb", - "tools/Runtime/arm/mrt100dac_winarm.dll", - "tools/Runtime/arm/mrt100dac_winarm_x86.dll", - "tools/Runtime/arm/mrt100dac_winrtarm.dll", - "tools/Runtime/arm/mrt100dbgshim_winarm.dll", - "tools/Runtime/arm/mrt100dbgshim_winrtarm.dll", - "tools/Runtime/arm/mrt100dbi_winarm.dll", - "tools/Runtime/arm/mrt100dbi_winrtarm.dll", - "tools/Runtime/arm/mrt100dbi_winx86.dll", - "tools/Runtime/arm/mrt100etw.dll", - "tools/Runtime/arm/mrt100sos.dll", - "tools/Runtime/arm/mrt100sos_x86.dll", - "tools/Runtime/arm/msdia120.dll", - "tools/Runtime/x64/CommandProvider.dll", - "tools/Runtime/x64/Microsoft.NET.Native.Runtime.1.6.appx", - "tools/Runtime/x64/SymbolProvider.dll", - "tools/Runtime/x64/mrt100_app.pdb", - "tools/Runtime/x64/mrt100dac_winamd64.dll", - "tools/Runtime/x64/mrt100dbgshim_winamd64.dll", - "tools/Runtime/x64/mrt100dbi_winamd64.dll", - "tools/Runtime/x64/mrt100etw.dll", - "tools/Runtime/x64/mrt100sos.dll", - "tools/Runtime/x64/msdia120.dll", - "tools/Runtime/x86/CommandProvider.dll", - "tools/Runtime/x86/Microsoft.NET.Native.Runtime.1.6.appx", - "tools/Runtime/x86/SymbolProvider.dll", - "tools/Runtime/x86/mrt100_app.pdb", - "tools/Runtime/x86/mrt100dac_winx86.dll", - "tools/Runtime/x86/mrt100dbgshim_winx86.dll", - "tools/Runtime/x86/mrt100dbi_winx86.dll", - "tools/Runtime/x86/mrt100etw.dll", - "tools/Runtime/x86/mrt100sos.dll", - "tools/Runtime/x86/msdia120.dll", - "tools/SharedLibraryXML/Callisto.rd.xml", - "tools/SharedLibraryXML/GalaSoft.MvvmLight.Extras.Win8.rd.xml", - "tools/SharedLibraryXML/GalaSoft.MvvmLight.Win8.rd.xml", - "tools/SharedLibraryXML/HugeFlow.Common.rd.xml", - "tools/SharedLibraryXML/JulMar.Windows.Interactivity.rd.xml", - "tools/SharedLibraryXML/MarkedUp.rd.xml", - "tools/SharedLibraryXML/Microsoft.ApplicationInsights.rd.xml", - "tools/SharedLibraryXML/Microsoft.PlayerFramework.rd.xml", - "tools/SharedLibraryXML/Microsoft.Practices.ServiceLocation.rd.xml", - "tools/SharedLibraryXML/Microsoft.WindowsAzure.Mobile.rd.xml", - "tools/SharedLibraryXML/Microsoft.WindowsAzure.MobileServices.Managed.rd.xml", - "tools/SharedLibraryXML/MonoGame.Framework.rd.xml", - "tools/SharedLibraryXML/MyToolkit.rd.xml", - "tools/SharedLibraryXML/Newtonsoft.Json.rd.xml", - "tools/SharedLibraryXML/SharpDX.DXGI.rd.xml", - "tools/SharedLibraryXML/SharpDX.Direct2D1.rd.xml", - "tools/SharedLibraryXML/SharpDX.rd.xml", - "tools/SharedLibraryXML/System.Reactive.Core.rd.xml", - "tools/SharedLibraryXML/System.Reactive.Linq.rd.xml", - "tools/SharedLibraryXML/System.Reactive.PlatformServices.rd.xml", - "tools/SharedLibraryXML/Telerik.Core.rd.xml", - "tools/SharedLibraryXML/Telerik.UI.Xaml.Primitives.rd.xml", - "tools/SharedLibraryXML/UnityEngine.rd.xml", - "tools/SharedLibraryXML/WinRT.Triggers.rd.xml", - "tools/SharedLibraryXML/WinRTXamlToolkit.rd.xml", - "tools/SharedLibraryXML/protobuf-net.rd.xml", - "tools/arm/etwevents.man", - "tools/arm/ilc/IlcInternals.settings.targets", - "tools/arm/ilc/IlcInternals.targets", - "tools/arm/ilc/Microsoft.Cci.dll", - "tools/arm/ilc/cs/Ilc.resources.dll", - "tools/arm/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/arm/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/arm/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/arm/ilc/csc/System.AppContext.dll", - "tools/arm/ilc/csc/System.Collections.Immutable.dll", - "tools/arm/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/arm/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/arm/ilc/csc/System.IO.FileSystem.dll", - "tools/arm/ilc/csc/System.Reflection.Metadata.dll", - "tools/arm/ilc/csc/csc.exe", - "tools/arm/ilc/csc/csc.exe.config", - "tools/arm/ilc/de/Ilc.resources.dll", - "tools/arm/ilc/es/Ilc.resources.dll", - "tools/arm/ilc/fr/Ilc.resources.dll", - "tools/arm/ilc/ilc.exe", - "tools/arm/ilc/ilc.exe.config", - "tools/arm/ilc/it/Ilc.resources.dll", - "tools/arm/ilc/ja/Ilc.resources.dll", - "tools/arm/ilc/ko/Ilc.resources.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/arm/ilc/lib/MSCRT/ucrtbase.dll", - "tools/arm/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/arm/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/arm/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/arm/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", - "tools/arm/ilc/lib/Native/Interop.Native.lib", - "tools/arm/ilc/lib/Native/TypeLoader.Native.lib", - "tools/arm/ilc/lib/Native/corelib.native.lib", - "tools/arm/ilc/lib/Native/pgort.lib", - "tools/arm/ilc/lib/Native/vmath.lib", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/arm/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/arm/ilc/lib/Private/System.Private.CompatQuirks.pdb", - "tools/arm/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.Threading.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.dll", - "tools/arm/ilc/lib/Private/System.Private.CoreLib.pdb", - "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", - "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", - "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", - "tools/arm/ilc/lib/Private/System.Private.DeveloperExperience.Console.pdb", - "tools/arm/ilc/lib/Private/System.Private.DispatchProxy.dll", - "tools/arm/ilc/lib/Private/System.Private.ILToolchain.dll", - "tools/arm/ilc/lib/Private/System.Private.Interop.Extensions.dll", - "tools/arm/ilc/lib/Private/System.Private.Interop.dll", - "tools/arm/ilc/lib/Private/System.Private.Interop.pdb", - "tools/arm/ilc/lib/Private/System.Private.MCG.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/arm/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/arm/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Augments.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Core.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Core.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Execution.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Metadata.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/arm/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.dll", - "tools/arm/ilc/lib/Private/System.Private.Reflection.pdb", - "tools/arm/ilc/lib/Private/System.Private.StackTraceGenerator.dll", - "tools/arm/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/arm/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", - "tools/arm/ilc/lib/Private/System.Private.Threading.dll", - "tools/arm/ilc/lib/Private/System.Private.Threading.pdb", - "tools/arm/ilc/lib/Private/System.Private.TypeLoader.dll", - "tools/arm/ilc/lib/Private/System.Private.TypeLoader.pdb", - "tools/arm/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", - "tools/arm/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", - "tools/arm/ilc/lib/Runtime/mrt100_app.dll", - "tools/arm/ilc/lib/Runtime/mrt100_app.pdb", - "tools/arm/ilc/pl/Ilc.resources.dll", - "tools/arm/ilc/pt-BR/Ilc.resources.dll", - "tools/arm/ilc/ru/Ilc.resources.dll", - "tools/arm/ilc/tools/1028/nutcui.dll", - "tools/arm/ilc/tools/1028/rhbindui.dll", - "tools/arm/ilc/tools/1029/nutcui.dll", - "tools/arm/ilc/tools/1029/rhbindui.dll", - "tools/arm/ilc/tools/1031/nutcui.dll", - "tools/arm/ilc/tools/1031/rhbindui.dll", - "tools/arm/ilc/tools/1033/nutcui.dll", - "tools/arm/ilc/tools/1033/rhbindui.dll", - "tools/arm/ilc/tools/1036/nutcui.dll", - "tools/arm/ilc/tools/1036/rhbindui.dll", - "tools/arm/ilc/tools/1040/nutcui.dll", - "tools/arm/ilc/tools/1040/rhbindui.dll", - "tools/arm/ilc/tools/1041/nutcui.dll", - "tools/arm/ilc/tools/1041/rhbindui.dll", - "tools/arm/ilc/tools/1042/nutcui.dll", - "tools/arm/ilc/tools/1042/rhbindui.dll", - "tools/arm/ilc/tools/1045/nutcui.dll", - "tools/arm/ilc/tools/1045/rhbindui.dll", - "tools/arm/ilc/tools/1046/nutcui.dll", - "tools/arm/ilc/tools/1046/rhbindui.dll", - "tools/arm/ilc/tools/1049/nutcui.dll", - "tools/arm/ilc/tools/1049/rhbindui.dll", - "tools/arm/ilc/tools/1055/nutcui.dll", - "tools/arm/ilc/tools/1055/rhbindui.dll", - "tools/arm/ilc/tools/2052/nutcui.dll", - "tools/arm/ilc/tools/2052/rhbindui.dll", - "tools/arm/ilc/tools/3082/nutcui.dll", - "tools/arm/ilc/tools/3082/rhbindui.dll", - "tools/arm/ilc/tools/CciExtensions.dll", - "tools/arm/ilc/tools/Gatekeeper.Engine.dll", - "tools/arm/ilc/tools/Gatekeeper.exe", - "tools/arm/ilc/tools/Gatekeeper.exe.config", - "tools/arm/ilc/tools/GatekeeperConfig.xml", - "tools/arm/ilc/tools/McgCodeDom.dll", - "tools/arm/ilc/tools/McgEngine.dll", - "tools/arm/ilc/tools/MdTransform.dll", - "tools/arm/ilc/tools/MethodBodyEditor.dll", - "tools/arm/ilc/tools/Microsoft.ApplicationInsights.PersistenceChannel.dll", - "tools/arm/ilc/tools/Microsoft.ApplicationInsights.UniversalTelemetryChannel.dll", - "tools/arm/ilc/tools/Microsoft.ApplicationInsights.dll", - "tools/arm/ilc/tools/Microsoft.Build.ILTasks.dll", - "tools/arm/ilc/tools/Microsoft.Cci.dll", - "tools/arm/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/arm/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/arm/ilc/tools/Microsoft.NetNative.Instrumentation.dll", - "tools/arm/ilc/tools/Microsoft.Threading.Tasks.Extensions.dll", - "tools/arm/ilc/tools/Microsoft.Threading.Tasks.dll", - "tools/arm/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", - "tools/arm/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", - "tools/arm/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/arm/ilc/tools/NativeFormatWriter.dll", - "tools/arm/ilc/tools/Newtonsoft.Json.dll", - "tools/arm/ilc/tools/ReducerEngine.dll", - "tools/arm/ilc/tools/TypeNameUtilities.dll", - "tools/arm/ilc/tools/WCFDispatchProxy.dll", - "tools/arm/ilc/tools/c2n.dll", - "tools/arm/ilc/tools/cs/CciExtensions.resources.dll", - "tools/arm/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/cs/McgEngine.resources.dll", - "tools/arm/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/cs/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/cs/sg.resources.dll", - "tools/arm/ilc/tools/de/CciExtensions.resources.dll", - "tools/arm/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/de/McgEngine.resources.dll", - "tools/arm/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/de/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/de/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/de/sg.resources.dll", - "tools/arm/ilc/tools/es/CciExtensions.resources.dll", - "tools/arm/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/es/McgEngine.resources.dll", - "tools/arm/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/es/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/es/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/es/sg.resources.dll", - "tools/arm/ilc/tools/fr/CciExtensions.resources.dll", - "tools/arm/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/fr/McgEngine.resources.dll", - "tools/arm/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/fr/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/fr/sg.resources.dll", - "tools/arm/ilc/tools/it/CciExtensions.resources.dll", - "tools/arm/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/it/McgEngine.resources.dll", - "tools/arm/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/it/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/it/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/it/sg.resources.dll", - "tools/arm/ilc/tools/ja/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ja/McgEngine.resources.dll", - "tools/arm/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ja/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/ja/sg.resources.dll", - "tools/arm/ilc/tools/ko/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ko/McgEngine.resources.dll", - "tools/arm/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ko/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/ko/sg.resources.dll", - "tools/arm/ilc/tools/msdia.sxs.manifest", - "tools/arm/ilc/tools/msdia120.dll", - "tools/arm/ilc/tools/msobj140.dll", - "tools/arm/ilc/tools/mspdbcore.dll", - "tools/arm/ilc/tools/msvcdis140.dll", - "tools/arm/ilc/tools/msvcp140.dll", - "tools/arm/ilc/tools/nutc_driver.exe", - "tools/arm/ilc/tools/pgocvt.exe", - "tools/arm/ilc/tools/pgodb140.dll", - "tools/arm/ilc/tools/pgomgr.exe", - "tools/arm/ilc/tools/pl/CciExtensions.resources.dll", - "tools/arm/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/pl/McgEngine.resources.dll", - "tools/arm/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/pl/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/pl/sg.resources.dll", - "tools/arm/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/arm/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/pt-BR/McgEngine.resources.dll", - "tools/arm/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/pt-BR/sg.resources.dll", - "tools/arm/ilc/tools/rhbind.exe", - "tools/arm/ilc/tools/ru/CciExtensions.resources.dll", - "tools/arm/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/ru/McgEngine.resources.dll", - "tools/arm/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/ru/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/ru/sg.resources.dll", - "tools/arm/ilc/tools/sg.exe", - "tools/arm/ilc/tools/sg.exe.config", - "tools/arm/ilc/tools/tr/CciExtensions.resources.dll", - "tools/arm/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/tr/McgEngine.resources.dll", - "tools/arm/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/tr/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/tr/sg.resources.dll", - "tools/arm/ilc/tools/ucrtbase.dll", - "tools/arm/ilc/tools/vcruntime140.dll", - "tools/arm/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/arm/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/zh-Hans/McgEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/zh-Hans/sg.resources.dll", - "tools/arm/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/arm/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/arm/ilc/tools/zh-Hant/McgEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/arm/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/arm/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", - "tools/arm/ilc/tools/zh-Hant/sg.resources.dll", - "tools/arm/ilc/tr/Ilc.resources.dll", - "tools/arm/ilc/zh-Hans/Ilc.resources.dll", - "tools/arm/ilc/zh-Hant/Ilc.resources.dll", - "tools/arm/mrt100etw.dll", - "tools/x64/etwevents.man", - "tools/x64/ilc/IlcInternals.settings.targets", - "tools/x64/ilc/IlcInternals.targets", - "tools/x64/ilc/Microsoft.Cci.dll", - "tools/x64/ilc/cs/Ilc.resources.dll", - "tools/x64/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/x64/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/x64/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/x64/ilc/csc/System.AppContext.dll", - "tools/x64/ilc/csc/System.Collections.Immutable.dll", - "tools/x64/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/x64/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/x64/ilc/csc/System.IO.FileSystem.dll", - "tools/x64/ilc/csc/System.Reflection.Metadata.dll", - "tools/x64/ilc/csc/csc.exe", - "tools/x64/ilc/csc/csc.exe.config", - "tools/x64/ilc/de/Ilc.resources.dll", - "tools/x64/ilc/es/Ilc.resources.dll", - "tools/x64/ilc/fr/Ilc.resources.dll", - "tools/x64/ilc/ilc.exe", - "tools/x64/ilc/ilc.exe.config", - "tools/x64/ilc/it/Ilc.resources.dll", - "tools/x64/ilc/ja/Ilc.resources.dll", - "tools/x64/ilc/ko/Ilc.resources.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/x64/ilc/lib/MSCRT/ucrtbase.dll", - "tools/x64/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/x64/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/x64/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/x64/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", - "tools/x64/ilc/lib/Native/Interop.Native.lib", - "tools/x64/ilc/lib/Native/TypeLoader.Native.lib", - "tools/x64/ilc/lib/Native/corelib.native.lib", - "tools/x64/ilc/lib/Native/pgort.lib", - "tools/x64/ilc/lib/Native/vmath.lib", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/x64/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/x64/ilc/lib/Private/System.Private.CompatQuirks.pdb", - "tools/x64/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.Threading.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.dll", - "tools/x64/ilc/lib/Private/System.Private.CoreLib.pdb", - "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", - "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", - "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", - "tools/x64/ilc/lib/Private/System.Private.DeveloperExperience.Console.pdb", - "tools/x64/ilc/lib/Private/System.Private.DispatchProxy.dll", - "tools/x64/ilc/lib/Private/System.Private.ILToolchain.dll", - "tools/x64/ilc/lib/Private/System.Private.Interop.Extensions.dll", - "tools/x64/ilc/lib/Private/System.Private.Interop.dll", - "tools/x64/ilc/lib/Private/System.Private.Interop.pdb", - "tools/x64/ilc/lib/Private/System.Private.MCG.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/x64/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/x64/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Augments.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Core.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Core.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Execution.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Metadata.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/x64/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.dll", - "tools/x64/ilc/lib/Private/System.Private.Reflection.pdb", - "tools/x64/ilc/lib/Private/System.Private.StackTraceGenerator.dll", - "tools/x64/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/x64/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", - "tools/x64/ilc/lib/Private/System.Private.Threading.dll", - "tools/x64/ilc/lib/Private/System.Private.Threading.pdb", - "tools/x64/ilc/lib/Private/System.Private.TypeLoader.dll", - "tools/x64/ilc/lib/Private/System.Private.TypeLoader.pdb", - "tools/x64/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", - "tools/x64/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", - "tools/x64/ilc/lib/Runtime/mrt100_app.dll", - "tools/x64/ilc/lib/Runtime/mrt100_app.pdb", - "tools/x64/ilc/pl/Ilc.resources.dll", - "tools/x64/ilc/pt-BR/Ilc.resources.dll", - "tools/x64/ilc/ru/Ilc.resources.dll", - "tools/x64/ilc/tools/1028/nutcui.dll", - "tools/x64/ilc/tools/1028/rhbindui.dll", - "tools/x64/ilc/tools/1029/nutcui.dll", - "tools/x64/ilc/tools/1029/rhbindui.dll", - "tools/x64/ilc/tools/1031/nutcui.dll", - "tools/x64/ilc/tools/1031/rhbindui.dll", - "tools/x64/ilc/tools/1033/nutcui.dll", - "tools/x64/ilc/tools/1033/rhbindui.dll", - "tools/x64/ilc/tools/1036/nutcui.dll", - "tools/x64/ilc/tools/1036/rhbindui.dll", - "tools/x64/ilc/tools/1040/nutcui.dll", - "tools/x64/ilc/tools/1040/rhbindui.dll", - "tools/x64/ilc/tools/1041/nutcui.dll", - "tools/x64/ilc/tools/1041/rhbindui.dll", - "tools/x64/ilc/tools/1042/nutcui.dll", - "tools/x64/ilc/tools/1042/rhbindui.dll", - "tools/x64/ilc/tools/1045/nutcui.dll", - "tools/x64/ilc/tools/1045/rhbindui.dll", - "tools/x64/ilc/tools/1046/nutcui.dll", - "tools/x64/ilc/tools/1046/rhbindui.dll", - "tools/x64/ilc/tools/1049/nutcui.dll", - "tools/x64/ilc/tools/1049/rhbindui.dll", - "tools/x64/ilc/tools/1055/nutcui.dll", - "tools/x64/ilc/tools/1055/rhbindui.dll", - "tools/x64/ilc/tools/2052/nutcui.dll", - "tools/x64/ilc/tools/2052/rhbindui.dll", - "tools/x64/ilc/tools/3082/nutcui.dll", - "tools/x64/ilc/tools/3082/rhbindui.dll", - "tools/x64/ilc/tools/CciExtensions.dll", - "tools/x64/ilc/tools/Gatekeeper.Engine.dll", - "tools/x64/ilc/tools/Gatekeeper.exe", - "tools/x64/ilc/tools/Gatekeeper.exe.config", - "tools/x64/ilc/tools/GatekeeperConfig.xml", - "tools/x64/ilc/tools/McgCodeDom.dll", - "tools/x64/ilc/tools/McgEngine.dll", - "tools/x64/ilc/tools/MdTransform.dll", - "tools/x64/ilc/tools/MethodBodyEditor.dll", - "tools/x64/ilc/tools/Microsoft.ApplicationInsights.PersistenceChannel.dll", - "tools/x64/ilc/tools/Microsoft.ApplicationInsights.UniversalTelemetryChannel.dll", - "tools/x64/ilc/tools/Microsoft.ApplicationInsights.dll", - "tools/x64/ilc/tools/Microsoft.Build.ILTasks.dll", - "tools/x64/ilc/tools/Microsoft.Cci.dll", - "tools/x64/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/x64/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/x64/ilc/tools/Microsoft.NetNative.Instrumentation.dll", - "tools/x64/ilc/tools/Microsoft.Threading.Tasks.Extensions.dll", - "tools/x64/ilc/tools/Microsoft.Threading.Tasks.dll", - "tools/x64/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", - "tools/x64/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", - "tools/x64/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/x64/ilc/tools/NativeFormatWriter.dll", - "tools/x64/ilc/tools/Newtonsoft.Json.dll", - "tools/x64/ilc/tools/ReducerEngine.dll", - "tools/x64/ilc/tools/TypeNameUtilities.dll", - "tools/x64/ilc/tools/WCFDispatchProxy.dll", - "tools/x64/ilc/tools/c2n.dll", - "tools/x64/ilc/tools/cs/CciExtensions.resources.dll", - "tools/x64/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/cs/McgEngine.resources.dll", - "tools/x64/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/cs/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/cs/sg.resources.dll", - "tools/x64/ilc/tools/de/CciExtensions.resources.dll", - "tools/x64/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/de/McgEngine.resources.dll", - "tools/x64/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/de/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/de/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/de/sg.resources.dll", - "tools/x64/ilc/tools/es/CciExtensions.resources.dll", - "tools/x64/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/es/McgEngine.resources.dll", - "tools/x64/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/es/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/es/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/es/sg.resources.dll", - "tools/x64/ilc/tools/fr/CciExtensions.resources.dll", - "tools/x64/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/fr/McgEngine.resources.dll", - "tools/x64/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/fr/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/fr/sg.resources.dll", - "tools/x64/ilc/tools/it/CciExtensions.resources.dll", - "tools/x64/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/it/McgEngine.resources.dll", - "tools/x64/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/it/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/it/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/it/sg.resources.dll", - "tools/x64/ilc/tools/ja/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ja/McgEngine.resources.dll", - "tools/x64/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ja/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/ja/sg.resources.dll", - "tools/x64/ilc/tools/ko/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ko/McgEngine.resources.dll", - "tools/x64/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ko/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/ko/sg.resources.dll", - "tools/x64/ilc/tools/msdia.sxs.manifest", - "tools/x64/ilc/tools/msdia120.dll", - "tools/x64/ilc/tools/msobj140.dll", - "tools/x64/ilc/tools/mspdbcore.dll", - "tools/x64/ilc/tools/msvcdis140.dll", - "tools/x64/ilc/tools/msvcp140.dll", - "tools/x64/ilc/tools/nutc_driver.exe", - "tools/x64/ilc/tools/pgocvt.exe", - "tools/x64/ilc/tools/pgodb140.dll", - "tools/x64/ilc/tools/pgomgr.exe", - "tools/x64/ilc/tools/pl/CciExtensions.resources.dll", - "tools/x64/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/pl/McgEngine.resources.dll", - "tools/x64/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/pl/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/pl/sg.resources.dll", - "tools/x64/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/x64/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/pt-BR/McgEngine.resources.dll", - "tools/x64/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/pt-BR/sg.resources.dll", - "tools/x64/ilc/tools/rhbind.exe", - "tools/x64/ilc/tools/ru/CciExtensions.resources.dll", - "tools/x64/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/ru/McgEngine.resources.dll", - "tools/x64/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/ru/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/ru/sg.resources.dll", - "tools/x64/ilc/tools/sg.exe", - "tools/x64/ilc/tools/sg.exe.config", - "tools/x64/ilc/tools/tr/CciExtensions.resources.dll", - "tools/x64/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/tr/McgEngine.resources.dll", - "tools/x64/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/tr/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/tr/sg.resources.dll", - "tools/x64/ilc/tools/ucrtbase.dll", - "tools/x64/ilc/tools/vcruntime140.dll", - "tools/x64/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/x64/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/zh-Hans/McgEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/zh-Hans/sg.resources.dll", - "tools/x64/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/x64/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/x64/ilc/tools/zh-Hant/McgEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/x64/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/x64/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", - "tools/x64/ilc/tools/zh-Hant/sg.resources.dll", - "tools/x64/ilc/tr/Ilc.resources.dll", - "tools/x64/ilc/zh-Hans/Ilc.resources.dll", - "tools/x64/ilc/zh-Hant/Ilc.resources.dll", - "tools/x64/mrt100etw.dll", - "tools/x86/etwevents.man", - "tools/x86/ilc/IlcInternals.settings.targets", - "tools/x86/ilc/IlcInternals.targets", - "tools/x86/ilc/Microsoft.Cci.dll", - "tools/x86/ilc/cs/Ilc.resources.dll", - "tools/x86/ilc/csc/Microsoft.CodeAnalysis.CSharp.dll", - "tools/x86/ilc/csc/Microsoft.CodeAnalysis.dll", - "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.amd64.dll", - "tools/x86/ilc/csc/Microsoft.DiaSymReader.Native.x86.dll", - "tools/x86/ilc/csc/System.AppContext.dll", - "tools/x86/ilc/csc/System.Collections.Immutable.dll", - "tools/x86/ilc/csc/System.Diagnostics.StackTrace.dll", - "tools/x86/ilc/csc/System.IO.FileSystem.Primitives.dll", - "tools/x86/ilc/csc/System.IO.FileSystem.dll", - "tools/x86/ilc/csc/System.Reflection.Metadata.dll", - "tools/x86/ilc/csc/csc.exe", - "tools/x86/ilc/csc/csc.exe.config", - "tools/x86/ilc/de/Ilc.resources.dll", - "tools/x86/ilc/es/Ilc.resources.dll", - "tools/x86/ilc/fr/Ilc.resources.dll", - "tools/x86/ilc/ilc.exe", - "tools/x86/ilc/ilc.exe.config", - "tools/x86/ilc/it/Ilc.resources.dll", - "tools/x86/ilc/ja/Ilc.resources.dll", - "tools/x86/ilc/ko/Ilc.resources.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-convert-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-heap-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-math-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-runtime-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-stdio-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/api-ms-win-crt-string-l1-1-0.dll", - "tools/x86/ilc/lib/MSCRT/ucrtbase.dll", - "tools/x86/ilc/lib/MSCRT/vcruntime140_app.dll", - "tools/x86/ilc/lib/McgDependencies/System.Private.DispatchProxy.dll", - "tools/x86/ilc/lib/McgDependencies/System.Private.MCG.dll", - "tools/x86/ilc/lib/McgDependencies/System.Reflection.DispatchProxy.dll", - "tools/x86/ilc/lib/Native/Interop.Native.lib", - "tools/x86/ilc/lib/Native/TypeLoader.Native.lib", - "tools/x86/ilc/lib/Native/corelib.native.lib", - "tools/x86/ilc/lib/Native/pgort.lib", - "tools/x86/ilc/lib/Native/vmath.lib", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.CompatQuirks.dll", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableServiceModelThunks.dll", - "tools/x86/ilc/lib/PreResolveDependencies/System.Private.PortableThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.dll", - "tools/x86/ilc/lib/Private/System.Private.CompatQuirks.pdb", - "tools/x86/ilc/lib/Private/System.Private.CompilerServices.ICastable.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Augments.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.CompilerServices.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.DeveloperExperience.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Diagnostics.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.DynamicDelegate.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.InteropServices.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Reflection.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.Threading.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.WinRTInterop.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.dll", - "tools/x86/ilc/lib/Private/System.Private.CoreLib.pdb", - "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.AppX.dll", - "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.AppX.pdb", - "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.Console.dll", - "tools/x86/ilc/lib/Private/System.Private.DeveloperExperience.Console.pdb", - "tools/x86/ilc/lib/Private/System.Private.DispatchProxy.dll", - "tools/x86/ilc/lib/Private/System.Private.ILToolchain.dll", - "tools/x86/ilc/lib/Private/System.Private.Interop.Extensions.dll", - "tools/x86/ilc/lib/Private/System.Private.Interop.dll", - "tools/x86/ilc/lib/Private/System.Private.Interop.pdb", - "tools/x86/ilc/lib/Private/System.Private.MCG.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableServiceModelThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableServiceModelThunks.pdb", - "tools/x86/ilc/lib/Private/System.Private.PortableThunks.dll", - "tools/x86/ilc/lib/Private/System.Private.PortableThunks.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Augments.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Core.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Core.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Execution.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Execution.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Extensibility.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Metadata.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.Metadata.pdb", - "tools/x86/ilc/lib/Private/System.Private.Reflection.MissingMetadataException.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.dll", - "tools/x86/ilc/lib/Private/System.Private.Reflection.pdb", - "tools/x86/ilc/lib/Private/System.Private.StackTraceGenerator.dll", - "tools/x86/ilc/lib/Private/System.Private.StackTraceGenerator.pdb", - "tools/x86/ilc/lib/Private/System.Private.Threading.AsyncCausalitySupport.dll", - "tools/x86/ilc/lib/Private/System.Private.Threading.dll", - "tools/x86/ilc/lib/Private/System.Private.Threading.pdb", - "tools/x86/ilc/lib/Private/System.Private.TypeLoader.dll", - "tools/x86/ilc/lib/Private/System.Private.TypeLoader.pdb", - "tools/x86/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.dll", - "tools/x86/ilc/lib/Private/System.Private.WinRTInterop.CoreLib.pdb", - "tools/x86/ilc/lib/Runtime/mrt100_app.dll", - "tools/x86/ilc/lib/Runtime/mrt100_app.pdb", - "tools/x86/ilc/pl/Ilc.resources.dll", - "tools/x86/ilc/pt-BR/Ilc.resources.dll", - "tools/x86/ilc/ru/Ilc.resources.dll", - "tools/x86/ilc/tools/1028/nutcui.dll", - "tools/x86/ilc/tools/1028/rhbindui.dll", - "tools/x86/ilc/tools/1029/nutcui.dll", - "tools/x86/ilc/tools/1029/rhbindui.dll", - "tools/x86/ilc/tools/1031/nutcui.dll", - "tools/x86/ilc/tools/1031/rhbindui.dll", - "tools/x86/ilc/tools/1033/nutcui.dll", - "tools/x86/ilc/tools/1033/rhbindui.dll", - "tools/x86/ilc/tools/1036/nutcui.dll", - "tools/x86/ilc/tools/1036/rhbindui.dll", - "tools/x86/ilc/tools/1040/nutcui.dll", - "tools/x86/ilc/tools/1040/rhbindui.dll", - "tools/x86/ilc/tools/1041/nutcui.dll", - "tools/x86/ilc/tools/1041/rhbindui.dll", - "tools/x86/ilc/tools/1042/nutcui.dll", - "tools/x86/ilc/tools/1042/rhbindui.dll", - "tools/x86/ilc/tools/1045/nutcui.dll", - "tools/x86/ilc/tools/1045/rhbindui.dll", - "tools/x86/ilc/tools/1046/nutcui.dll", - "tools/x86/ilc/tools/1046/rhbindui.dll", - "tools/x86/ilc/tools/1049/nutcui.dll", - "tools/x86/ilc/tools/1049/rhbindui.dll", - "tools/x86/ilc/tools/1055/nutcui.dll", - "tools/x86/ilc/tools/1055/rhbindui.dll", - "tools/x86/ilc/tools/2052/nutcui.dll", - "tools/x86/ilc/tools/2052/rhbindui.dll", - "tools/x86/ilc/tools/3082/nutcui.dll", - "tools/x86/ilc/tools/3082/rhbindui.dll", - "tools/x86/ilc/tools/CciExtensions.dll", - "tools/x86/ilc/tools/Gatekeeper.Engine.dll", - "tools/x86/ilc/tools/Gatekeeper.exe", - "tools/x86/ilc/tools/Gatekeeper.exe.config", - "tools/x86/ilc/tools/GatekeeperConfig.xml", - "tools/x86/ilc/tools/McgCodeDom.dll", - "tools/x86/ilc/tools/McgEngine.dll", - "tools/x86/ilc/tools/MdTransform.dll", - "tools/x86/ilc/tools/MethodBodyEditor.dll", - "tools/x86/ilc/tools/Microsoft.ApplicationInsights.PersistenceChannel.dll", - "tools/x86/ilc/tools/Microsoft.ApplicationInsights.UniversalTelemetryChannel.dll", - "tools/x86/ilc/tools/Microsoft.ApplicationInsights.dll", - "tools/x86/ilc/tools/Microsoft.Build.ILTasks.dll", - "tools/x86/ilc/tools/Microsoft.Cci.dll", - "tools/x86/ilc/tools/Microsoft.Diagnostics.Tracing.EventSource.dll", - "tools/x86/ilc/tools/Microsoft.NetNative.IL2IL.dll", - "tools/x86/ilc/tools/Microsoft.NetNative.Instrumentation.dll", - "tools/x86/ilc/tools/Microsoft.Threading.Tasks.Extensions.dll", - "tools/x86/ilc/tools/Microsoft.Threading.Tasks.dll", - "tools/x86/ilc/tools/Microsoft.VisualStudio.RemoteControl.dll", - "tools/x86/ilc/tools/Microsoft.VisualStudio.Telemetry.dll", - "tools/x86/ilc/tools/Microsoft.VisualStudio.Utilities.Internal.dll", - "tools/x86/ilc/tools/NativeFormatWriter.dll", - "tools/x86/ilc/tools/Newtonsoft.Json.dll", - "tools/x86/ilc/tools/ReducerEngine.dll", - "tools/x86/ilc/tools/TypeNameUtilities.dll", - "tools/x86/ilc/tools/WCFDispatchProxy.dll", - "tools/x86/ilc/tools/c2n.dll", - "tools/x86/ilc/tools/cs/CciExtensions.resources.dll", - "tools/x86/ilc/tools/cs/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/cs/McgEngine.resources.dll", - "tools/x86/ilc/tools/cs/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/cs/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/cs/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/cs/sg.resources.dll", - "tools/x86/ilc/tools/de/CciExtensions.resources.dll", - "tools/x86/ilc/tools/de/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/de/McgEngine.resources.dll", - "tools/x86/ilc/tools/de/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/de/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/de/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/de/sg.resources.dll", - "tools/x86/ilc/tools/es/CciExtensions.resources.dll", - "tools/x86/ilc/tools/es/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/es/McgEngine.resources.dll", - "tools/x86/ilc/tools/es/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/es/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/es/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/es/sg.resources.dll", - "tools/x86/ilc/tools/fr/CciExtensions.resources.dll", - "tools/x86/ilc/tools/fr/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/fr/McgEngine.resources.dll", - "tools/x86/ilc/tools/fr/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/fr/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/fr/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/fr/sg.resources.dll", - "tools/x86/ilc/tools/it/CciExtensions.resources.dll", - "tools/x86/ilc/tools/it/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/it/McgEngine.resources.dll", - "tools/x86/ilc/tools/it/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/it/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/it/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/it/sg.resources.dll", - "tools/x86/ilc/tools/ja/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ja/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ja/McgEngine.resources.dll", - "tools/x86/ilc/tools/ja/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ja/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ja/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/ja/sg.resources.dll", - "tools/x86/ilc/tools/ko/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ko/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ko/McgEngine.resources.dll", - "tools/x86/ilc/tools/ko/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ko/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ko/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/ko/sg.resources.dll", - "tools/x86/ilc/tools/msdia.sxs.manifest", - "tools/x86/ilc/tools/msdia120.dll", - "tools/x86/ilc/tools/msobj140.dll", - "tools/x86/ilc/tools/mspdbcore.dll", - "tools/x86/ilc/tools/msvcdis140.dll", - "tools/x86/ilc/tools/msvcp140.dll", - "tools/x86/ilc/tools/nutc_driver.exe", - "tools/x86/ilc/tools/pgocvt.exe", - "tools/x86/ilc/tools/pgodb140.dll", - "tools/x86/ilc/tools/pgomgr.exe", - "tools/x86/ilc/tools/pl/CciExtensions.resources.dll", - "tools/x86/ilc/tools/pl/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/pl/McgEngine.resources.dll", - "tools/x86/ilc/tools/pl/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/pl/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/pl/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/pl/sg.resources.dll", - "tools/x86/ilc/tools/pt-BR/CciExtensions.resources.dll", - "tools/x86/ilc/tools/pt-BR/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/pt-BR/McgEngine.resources.dll", - "tools/x86/ilc/tools/pt-BR/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/pt-BR/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/pt-BR/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/pt-BR/sg.resources.dll", - "tools/x86/ilc/tools/rhbind.exe", - "tools/x86/ilc/tools/ru/CciExtensions.resources.dll", - "tools/x86/ilc/tools/ru/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/ru/McgEngine.resources.dll", - "tools/x86/ilc/tools/ru/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/ru/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/ru/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/ru/sg.resources.dll", - "tools/x86/ilc/tools/sg.exe", - "tools/x86/ilc/tools/sg.exe.config", - "tools/x86/ilc/tools/tr/CciExtensions.resources.dll", - "tools/x86/ilc/tools/tr/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/tr/McgEngine.resources.dll", - "tools/x86/ilc/tools/tr/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/tr/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/tr/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/tr/sg.resources.dll", - "tools/x86/ilc/tools/ucrtbase.dll", - "tools/x86/ilc/tools/vcruntime140.dll", - "tools/x86/ilc/tools/zh-Hans/CciExtensions.resources.dll", - "tools/x86/ilc/tools/zh-Hans/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/zh-Hans/McgEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hans/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/zh-Hans/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hans/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/zh-Hans/sg.resources.dll", - "tools/x86/ilc/tools/zh-Hant/CciExtensions.resources.dll", - "tools/x86/ilc/tools/zh-Hant/Gatekeeper.Engine.resources.dll", - "tools/x86/ilc/tools/zh-Hant/McgEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hant/Microsoft.Build.ILTasks.resources.dll", - "tools/x86/ilc/tools/zh-Hant/ReducerEngine.resources.dll", - "tools/x86/ilc/tools/zh-Hant/TypeNameUtilities.resources.dll", - "tools/x86/ilc/tools/zh-Hant/sg.resources.dll", - "tools/x86/ilc/tr/Ilc.resources.dll", - "tools/x86/ilc/zh-Hans/Ilc.resources.dll", - "tools/x86/ilc/zh-Hant/Ilc.resources.dll", - "tools/x86/mrt100etw.dll" - ] - }, - "Microsoft.Net.Native.SharedLibrary-arm/1.6.1": { - "sha512": "PmgXdc9F6HPU2J9s4rtzkgTqGcMx3ycradUvxRK82WTL0ltknTX4/+ZDgqYUiEdOMHwkXoAHnKcQfsIC3GQ2Ng==", - "type": "package", - "path": "microsoft.net.native.sharedlibrary-arm/1.6.1", - "files": [ - "build/Microsoft.Net.Native.SharedLibrary-arm.props", - "build/Microsoft.Net.Native.SharedLibrary-arm.targets", - "microsoft.net.native.sharedlibrary-arm.1.6.1.nupkg.sha512", - "microsoft.net.native.sharedlibrary-arm.nuspec", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.6.appx", - "tools/SharedLibrary/chk/Native/SharedLibrary.dll", - "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", - "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/chk/SharedAssemblyList.txt", - "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.toc", - "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.6.appx", - "tools/SharedLibrary/ret/Native/SharedLibrary.dll", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", - "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/ret/SharedAssemblyList.txt", - "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.toc", - "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" - ] - }, - "Microsoft.Net.Native.SharedLibrary-x64/1.6.1": { - "sha512": "AEd9UK6oq46NBMO29LquKza/cyaIsrrfFRMZbmDlOArS5sMVOUGga3vBDebwgRzmYtUdFFmRu3XaaKhVrncEbw==", - "type": "package", - "path": "microsoft.net.native.sharedlibrary-x64/1.6.1", - "files": [ - "build/Microsoft.Net.Native.SharedLibrary-x64.props", - "build/Microsoft.Net.Native.SharedLibrary-x64.targets", - "microsoft.net.native.sharedlibrary-x64.1.6.1.nupkg.sha512", - "microsoft.net.native.sharedlibrary-x64.nuspec", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.6.appx", - "tools/SharedLibrary/chk/Native/SharedLibrary.dll", - "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/Native/SharedLibrary.pdb.srcsrv.txt", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", - "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/chk/SharedAssemblyList.txt", - "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.toc", - "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.6.appx", - "tools/SharedLibrary/ret/Native/SharedLibrary.dll", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", - "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/ret/SharedAssemblyList.txt", - "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.toc", - "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" - ] - }, - "Microsoft.Net.Native.SharedLibrary-x86/1.6.1": { - "sha512": "jurbK0IemAFs0NDxXRCVMmC18p3NLKkk3SU+kqjzuOQyUiz9KTl4+ZOUDBRNcPGWnwuT5DIKdv6kYvywj0LjPw==", - "type": "package", - "path": "microsoft.net.native.sharedlibrary-x86/1.6.1", - "files": [ - "build/Microsoft.Net.Native.SharedLibrary-x86.props", - "build/Microsoft.Net.Native.SharedLibrary-x86.targets", - "microsoft.net.native.sharedlibrary-x86.1.6.1.nupkg.sha512", - "microsoft.net.native.sharedlibrary-x86.nuspec", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.IO.iltoc", - "tools/SharedLibrary/chk/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/chk/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/chk/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/chk/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/chk/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/chk/Native/Microsoft.NET.Native.Framework.Debug.1.6.appx", - "tools/SharedLibrary/chk/Native/SharedLibrary.dll", - "tools/SharedLibrary/chk/Native/SharedLibrary.pdb", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.Concurrent.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Collections.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Diagnostics.Tracing.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Dynamic.Runtime.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.IO.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.Expressions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Linq.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.ObjectModel.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.CoreLib.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Interop.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Core.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.Execution.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Reflection.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Threading.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.TypeLoader.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Private.Uri.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Reflection.TypeExtensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Resources.ResourceManager.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Runtime.Extensions.SR.resw", - "tools/SharedLibrary/chk/ResW/FxResources.System.Text.RegularExpressions.SR.resw", - "tools/SharedLibrary/chk/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/chk/SharedAssemblyList.txt", - "tools/SharedLibrary/chk/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/chk/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/chk/Toc/System.Collections.toc", - "tools/SharedLibrary/chk/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/chk/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/chk/Toc/System.IO.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/chk/Toc/System.Linq.toc", - "tools/SharedLibrary/chk/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/chk/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/chk/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/chk/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/chk/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/chk/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/chk/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/chk/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/chk/Toc/System.Text.RegularExpressions.toc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/AnalysisILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.Concurrent.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Collections.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Diagnostics.Tracing.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Dynamic.Runtime.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.IO.iltoc", - "tools/SharedLibrary/ret/ILToc/System.IO.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.Expressions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Linq.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltoc", - "tools/SharedLibrary/ret/ILToc/System.ObjectModel.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.CoreLib.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Interop.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Core.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Execution.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.Metadata.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Reflection.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.SharedLibrary.Interop.Generated.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Threading.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.TypeLoader.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Private.Uri.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.Primitives.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Reflection.TypeExtensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Resources.ResourceManager.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Extensions.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Runtime.Implementation.iltocpdb", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltoc", - "tools/SharedLibrary/ret/ILToc/System.Text.RegularExpressions.iltocpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.Concurrent.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Collections.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Diagnostics.Tracing.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Dynamic.Runtime.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.IO.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.Expressions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Linq.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.ObjectModel.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.CoreLib.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Interop.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Core.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Execution.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.Metadata.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Reflection.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.SharedLibrary.Interop.Generated.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Threading.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.TypeLoader.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Private.Uri.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.Primitives.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Reflection.TypeExtensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Resources.ResourceManager.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Extensions.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Runtime.Implementation.ilpdb", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ildll", - "tools/SharedLibrary/ret/ILTransformed/System.Text.RegularExpressions.ilpdb", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdildll", - "tools/SharedLibrary/ret/MDIL/SharedLibrary.mdilpdb", - "tools/SharedLibrary/ret/Native/Microsoft.NET.Native.Framework.1.6.appx", - "tools/SharedLibrary/ret/Native/SharedLibrary.dll", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb", - "tools/SharedLibrary/ret/Native/SharedLibrary.pdb.srcsrv.txt", - "tools/SharedLibrary/ret/SharedAssemblyILMergeInfo.csv", - "tools/SharedLibrary/ret/SharedAssemblyList.txt", - "tools/SharedLibrary/ret/SharedLibrary.iltransformtoc.ildll", - "tools/SharedLibrary/ret/Toc/System.Collections.Concurrent.toc", - "tools/SharedLibrary/ret/Toc/System.Collections.toc", - "tools/SharedLibrary/ret/Toc/System.Diagnostics.Tracing.toc", - "tools/SharedLibrary/ret/Toc/System.Dynamic.Runtime.toc", - "tools/SharedLibrary/ret/Toc/System.IO.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.Expressions.toc", - "tools/SharedLibrary/ret/Toc/System.Linq.toc", - "tools/SharedLibrary/ret/Toc/System.ObjectModel.toc", - "tools/SharedLibrary/ret/Toc/System.Private.CoreLib.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Interop.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Core.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Execution.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.Metadata.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Reflection.toc", - "tools/SharedLibrary/ret/Toc/System.Private.SharedLibrary.Interop.Generated.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Threading.toc", - "tools/SharedLibrary/ret/Toc/System.Private.TypeLoader.toc", - "tools/SharedLibrary/ret/Toc/System.Private.Uri.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.Primitives.toc", - "tools/SharedLibrary/ret/Toc/System.Reflection.TypeExtensions.toc", - "tools/SharedLibrary/ret/Toc/System.Resources.ResourceManager.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Extensions.toc", - "tools/SharedLibrary/ret/Toc/System.Runtime.Implementation.toc", - "tools/SharedLibrary/ret/Toc/System.Text.RegularExpressions.toc" - ] - }, - "Microsoft.NETCore/5.0.2": { - "sha512": "wHb/fpL+6IxrZBAL2BwRJmj51RwYr3TVcnw5KIsxUtqLxjsqgasTbBmE9kZPAlhhljnt+m2EYMc7vcFuAhGNqA==", - "type": "package", - "path": "microsoft.netcore/5.0.2", - "files": [ - "Microsoft.NETCore.5.0.2.nupkg.sha512", - "Microsoft.NETCore.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt" - ] - }, - "Microsoft.NETCore.Jit/1.0.3": { - "sha512": "/l8xYwtoJrFSx9zMWRClaKrgR+BTstCD1E5P90ADgiwH0GwlEqVhLoFIrsXpYj0j9vCB/fzOq7D/ZzuCbtmrTQ==", - "type": "package", - "path": "microsoft.netcore.jit/1.0.3", - "files": [ - "Microsoft.NETCore.Jit.1.0.3.nupkg.sha512", - "Microsoft.NETCore.Jit.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.json" - ] - }, - "Microsoft.NETCore.Platforms/1.0.2": { - "sha512": "fRHBvQs9Z/ZSUAqaSotK1UPol/lwybTgdeTXR4eVw3rVDgzUnWGTUsK0A418oR7NrimNL1TQu/IM0RDa26s0qg==", - "type": "package", - "path": "microsoft.netcore.platforms/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.0.2.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.2": { - "sha512": "sR4m1GQ8Tbg+Xdbf8Y8yC+LXKSUJUVe/B5vckCAU9Jd5MYf84gC1D0u2YeA72B4WjeWewCyHRB20ddA8hyLmqQ==", - "type": "package", - "path": "microsoft.netcore.portable.compatibility/1.0.2", - "files": [ - "Microsoft.NETCore.Portable.Compatibility.1.0.2.nupkg.sha512", - "Microsoft.NETCore.Portable.Compatibility.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.dll", - "lib/netstandard1.0/System.ComponentModel.DataAnnotations.dll", - "lib/netstandard1.0/System.Core.dll", - "lib/netstandard1.0/System.Net.dll", - "lib/netstandard1.0/System.Numerics.dll", - "lib/netstandard1.0/System.Runtime.Serialization.dll", - "lib/netstandard1.0/System.ServiceModel.Web.dll", - "lib/netstandard1.0/System.ServiceModel.dll", - "lib/netstandard1.0/System.Windows.dll", - "lib/netstandard1.0/System.Xml.Linq.dll", - "lib/netstandard1.0/System.Xml.Serialization.dll", - "lib/netstandard1.0/System.Xml.dll", - "lib/netstandard1.0/System.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.dll", - "ref/netcore50/mscorlib.dll", - "ref/netstandard1.0/System.ComponentModel.DataAnnotations.dll", - "ref/netstandard1.0/System.Core.dll", - "ref/netstandard1.0/System.Net.dll", - "ref/netstandard1.0/System.Numerics.dll", - "ref/netstandard1.0/System.Runtime.Serialization.dll", - "ref/netstandard1.0/System.ServiceModel.Web.dll", - "ref/netstandard1.0/System.ServiceModel.dll", - "ref/netstandard1.0/System.Windows.dll", - "ref/netstandard1.0/System.Xml.Linq.dll", - "ref/netstandard1.0/System.Xml.Serialization.dll", - "ref/netstandard1.0/System.Xml.dll", - "ref/netstandard1.0/System.dll", - "ref/netstandard1.0/mscorlib.dll", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.dll", - "runtimes/aot/lib/netcore50/System.Net.dll", - "runtimes/aot/lib/netcore50/System.Numerics.dll", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR/1.0.3": { - "sha512": "tjD5r9Lxy+MD+YRJcuds5+sT+xGHkVt2Hb5LfLZIgkFmwUewBRPm/42UXi4oxhV1OIdRtt4ymwsiuFCwT16T9w==", - "type": "package", - "path": "microsoft.netcore.runtime.coreclr/1.0.3", - "files": [ - "Microsoft.NETCore.Runtime.CoreCLR.1.0.3.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.0.2": { - "sha512": "yk4GtuNbFz2sxA5NNIp2bnOwGZVlB4U+F4gWy5YnMEKmGzzJfQ4wg7zQUx334+WMQ5PiQEuS4UuOpsW+V0PzVg==", - "type": "package", - "path": "microsoft.netcore.targets/1.0.2", - "files": [ - "Microsoft.NETCore.Targets.1.0.2.nupkg.sha512", - "Microsoft.NETCore.Targets.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.json" - ] - }, - "Microsoft.NETCore.UniversalWindowsPlatform/5.3.3": { - "sha512": "aCy8WhdcWqIl+gUoY905OWPCP1NqVOtT4Oejn7SIZb9KPKkB5cUfvLEmsY3xwud0TIaJaExKTUhrFluzKtSblQ==", - "type": "package", - "path": "microsoft.netcore.universalwindowsplatform/5.3.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "microsoft.netcore.universalwindowsplatform.5.3.3.nupkg.sha512", - "microsoft.netcore.universalwindowsplatform.nuspec" - ] - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "type": "package", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "files": [ - "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.json" - ] - }, - "Microsoft.VisualBasic/10.0.1": { - "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", - "type": "package", - "path": "microsoft.visualbasic/10.0.1", - "files": [ - "Microsoft.VisualBasic.10.0.1.nupkg.sha512", - "Microsoft.VisualBasic.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/netstandard1.3/Microsoft.VisualBasic.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/netcore50/de/Microsoft.VisualBasic.xml", - "ref/netcore50/es/Microsoft.VisualBasic.xml", - "ref/netcore50/fr/Microsoft.VisualBasic.xml", - "ref/netcore50/it/Microsoft.VisualBasic.xml", - "ref/netcore50/ja/Microsoft.VisualBasic.xml", - "ref/netcore50/ko/Microsoft.VisualBasic.xml", - "ref/netcore50/ru/Microsoft.VisualBasic.xml", - "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", - "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/Microsoft.VisualBasic.dll", - "ref/netstandard1.1/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", - "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._" - ] - }, - "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", - "type": "package", - "path": "microsoft.win32.primitives/4.0.1", - "files": [ - "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "runtime.any.System.Collections/4.0.11": { - "sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==", - "type": "package", - "path": "runtime.any.system.collections/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Collections.4.0.11.nupkg.sha512", - "runtime.any.System.Collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tools/4.0.1": { - "sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==", - "type": "package", - "path": "runtime.any.system.diagnostics.tools/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/netstandard1.3/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Diagnostics.Tools.4.0.1.nupkg.sha512", - "runtime.any.System.Diagnostics.Tools.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Diagnostics.Tracing.4.1.0.nupkg.sha512", - "runtime.any.System.Diagnostics.Tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.0.11": { - "sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==", - "type": "package", - "path": "runtime.any.system.globalization/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Globalization.4.0.11.nupkg.sha512", - "runtime.any.System.Globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization.Calendars/4.0.1": { - "sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==", - "type": "package", - "path": "runtime.any.system.globalization.calendars/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net/_._", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/netstandard1.3/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Globalization.Calendars.4.0.1.nupkg.sha512", - "runtime.any.System.Globalization.Calendars.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.1.0": { - "sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==", - "type": "package", - "path": "runtime.any.system.io/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.IO.4.1.0.nupkg.sha512", - "runtime.any.System.IO.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.1.0": { - "sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==", - "type": "package", - "path": "runtime.any.system.reflection/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Reflection.4.1.0.nupkg.sha512", - "runtime.any.System.Reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.0.1": { - "sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Reflection.Extensions.4.0.1.nupkg.sha512", - "runtime.any.System.Reflection.Extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.0.1": { - "sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Reflection.Primitives.4.0.1.nupkg.sha512", - "runtime.any.System.Reflection.Primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.0.1": { - "sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Resources.ResourceManager.4.0.1.nupkg.sha512", - "runtime.any.System.Resources.ResourceManager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.1.0": { - "sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Runtime.4.1.0.nupkg.sha512", - "runtime.any.System.Runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.0.1": { - "sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Runtime.Handles.4.0.1.nupkg.sha512", - "runtime.any.System.Runtime.Handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.1.0": { - "sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Runtime.InteropServices.4.1.0.nupkg.sha512", - "runtime.any.System.Runtime.InteropServices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.0.11": { - "sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Text.Encoding.4.0.11.nupkg.sha512", - "runtime.any.System.Text.Encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", - "runtime.any.System.Text.Encoding.Extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.0.11": { - "sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Threading.Tasks.4.0.11.nupkg.sha512", - "runtime.any.System.Threading.Tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Timer/4.0.1": { - "sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==", - "type": "package", - "path": "runtime.any.system.threading.timer/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/netstandard1.3/System.Threading.Timer.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.System.Threading.Timer.4.0.1.nupkg.sha512", - "runtime.any.System.Threading.Timer.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.aot.System.Collections/4.0.10": { - "sha512": "JaNCSMYW8RoPTrzlqRp3IsPdbSp8IhnNQ3qeKVGtBggT/9bZFz6FjfU+YG3NEiy/yPo03NMQ5EtXMT2MCIrV1A==", - "type": "package", - "path": "runtime.aot.system.collections/4.0.10", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Collections.4.0.10.nupkg.sha512", - "runtime.aot.System.Collections.nuspec", - "runtimes/aot/lib/netcore50/System.Collections.dll" - ] - }, - "runtime.aot.System.Diagnostics.Tools/4.0.1": { - "sha512": "29xXSZEpRNd2wJsEXX40CEaWhhQjfqFGal4f1DuqY7Gd7+ARcV7zJK9aKRX9SkHnQfx3qSm3+D/VWBPI7pgEYQ==", - "type": "package", - "path": "runtime.aot.system.diagnostics.tools/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Diagnostics.Tools.4.0.1.nupkg.sha512", - "runtime.aot.System.Diagnostics.Tools.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll" - ] - }, - "runtime.aot.System.Diagnostics.Tracing/4.0.20": { - "sha512": "1zaLtCd4/msBeR4hDRjywdONAqnMl+mfsYO2er+kj9HEMQfrItSdApImXakl3CTRqb1S8upuBru2v/SLEY2vtg==", - "type": "package", - "path": "runtime.aot.system.diagnostics.tracing/4.0.20", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "runtime.aot.System.Diagnostics.Tracing.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll" - ] - }, - "runtime.aot.System.Globalization/4.0.11": { - "sha512": "eEPSEA2yUp1HLNlp8Cve/J6UpN2mFnWUJhjqVEw+d+JUkWrzE2+ebl+0kf91Nwls4Mnia0GkjRRDiDKt8XeAAQ==", - "type": "package", - "path": "runtime.aot.system.globalization/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Globalization.4.0.11.nupkg.sha512", - "runtime.aot.System.Globalization.nuspec", - "runtimes/aot/lib/netcore50/System.Globalization.dll" - ] - }, - "runtime.aot.System.Globalization.Calendars/4.0.1": { - "sha512": "nXHH2LS832GzQMr//792HTXyuUGlREv/8IZ24USS+q8QobtPwAis0mDumSoSd6z+IoiFGK7ol1Ev/ab+dRiVTg==", - "type": "package", - "path": "runtime.aot.system.globalization.calendars/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Globalization.Calendars.4.0.1.nupkg.sha512", - "runtime.aot.System.Globalization.Calendars.nuspec", - "runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll" - ] - }, - "runtime.aot.System.IO/4.1.0": { - "sha512": "zI0PBKDpAvTNbxTgcZutcb50D7jHJaC9vQLxKhUBn4gS7VHQqnZjqyEqXBxc4rnx6rdZzlMADNZAMUWNW42Sxw==", - "type": "package", - "path": "runtime.aot.system.io/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.IO.4.1.0.nupkg.sha512", - "runtime.aot.System.IO.nuspec", - "runtimes/aot/lib/netcore50/System.IO.dll", - "runtimes/aot/lib/netstandard1.3/System.IO.dll" - ] - }, - "runtime.aot.System.Reflection/4.0.10": { - "sha512": "vrUbKdxXRNkmIsiMFP03cKLmzGoN7ObqU7rpjr/9ABL2ovHO7vyFhVfkpUXg4uX94ixgVaytbISLe+yxFQtl8w==", - "type": "package", - "path": "runtime.aot.system.reflection/4.0.10", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Reflection.4.0.10.nupkg.sha512", - "runtime.aot.System.Reflection.nuspec", - "runtimes/aot/lib/netcore50/System.Reflection.dll" - ] - }, - "runtime.aot.System.Reflection.Extensions/4.0.0": { - "sha512": "WWw59m7k4XZLWN6XbptSR0TOdrLgwh5XEBj77QaUZQ+PcmvSzdJ79Jfp76ncQb5SzJZVu5ByZ7ufWX2bIeDpFQ==", - "type": "package", - "path": "runtime.aot.system.reflection.extensions/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Reflection.Extensions.4.0.0.nupkg.sha512", - "runtime.aot.System.Reflection.Extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll" - ] - }, - "runtime.aot.System.Reflection.Primitives/4.0.0": { - "sha512": "826QEny5/GvZ270fhG70vnzYlFnTxNAHiHfyRS2zMZ5X1MpAsiW0y0XHAJjq7MrrnRjyG3qHF0zqytpNPJLaFQ==", - "type": "package", - "path": "runtime.aot.system.reflection.primitives/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Reflection.Primitives.4.0.0.nupkg.sha512", - "runtime.aot.System.Reflection.Primitives.nuspec", - "runtimes/aot/lib/MonoAndroid10/_._", - "runtimes/aot/lib/MonoTouch10/_._", - "runtimes/aot/lib/net45/_._", - "runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll", - "runtimes/aot/lib/win8/_._", - "runtimes/aot/lib/wp80/_._", - "runtimes/aot/lib/wpa81/_._", - "runtimes/aot/lib/xamarinios10/_._", - "runtimes/aot/lib/xamarinmac20/_._", - "runtimes/aot/lib/xamarintvos10/_._", - "runtimes/aot/lib/xamarinwatchos10/_._" - ] - }, - "runtime.aot.System.Resources.ResourceManager/4.0.0": { - "sha512": "j+xK1M/oJ5ll7WT6UD9oQ/YUESFtT0YN3th1TIliJjK5J0Ek4vDPTMDQceu3WFy7aQOThDmIxjkAVSxZV7OWIA==", - "type": "package", - "path": "runtime.aot.system.resources.resourcemanager/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "runtime.aot.System.Resources.ResourceManager.nuspec", - "runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll" - ] - }, - "runtime.aot.System.Runtime/4.0.20": { - "sha512": "ax423Smc+2Bcm8Go70iwj30hpjUIuahVtBAqlGXzhOoRwRR4vlEN3OGp8qTecWki3ZhGrbOXy+A1U89V3DzG/w==", - "type": "package", - "path": "runtime.aot.system.runtime/4.0.20", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Runtime.4.0.20.nupkg.sha512", - "runtime.aot.System.Runtime.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.dll" - ] - }, - "runtime.aot.System.Runtime.Handles/4.0.1": { - "sha512": "UPzDQF5lwQ+BN+B1Zu2u3b5YQvIo4A96N9v5Uwo4VL1hWEf4STqiZgRogumy21TeRLjtEpF7I5JqIDhcc3OMCw==", - "type": "package", - "path": "runtime.aot.system.runtime.handles/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Runtime.Handles.4.0.1.nupkg.sha512", - "runtime.aot.System.Runtime.Handles.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Handles.dll" - ] - }, - "runtime.aot.System.Runtime.InteropServices/4.0.20": { - "sha512": "s4P2Jlf6ev4RgeLjNIq4hXsESIuE6t0Ljf+KVfRGDvrZ+yJuoPjwS3zMkm2SPj5Qif1HZ9vskKTdHPtk1B89Bw==", - "type": "package", - "path": "runtime.aot.system.runtime.interopservices/4.0.20", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Runtime.InteropServices.4.0.20.nupkg.sha512", - "runtime.aot.System.Runtime.InteropServices.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll" - ] - }, - "runtime.aot.System.Text.Encoding/4.0.11": { - "sha512": "mUltrQRF5trt9DvIDPxV5E3girWcXlJgQBnYHfy1b8RQU2Ipob6xzCqlDnnECa8+FdhD8C/A7s7krxvHWcJ/pw==", - "type": "package", - "path": "runtime.aot.system.text.encoding/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Text.Encoding.4.0.11.nupkg.sha512", - "runtime.aot.System.Text.Encoding.nuspec", - "runtimes/aot/lib/netcore50/System.Text.Encoding.dll" - ] - }, - "runtime.aot.System.Text.Encoding.Extensions/4.0.11": { - "sha512": "N6XCU9y8ZC51LfxnE5tgNFy+3emNQTRY6W3NeLqlHLcina5vbChsSsPDOCpEIGMTOMxbODe5HtWYbzaOOSFtGg==", - "type": "package", - "path": "runtime.aot.system.text.encoding.extensions/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", - "runtime.aot.System.Text.Encoding.Extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll" - ] - }, - "runtime.aot.System.Threading.Tasks/4.0.11": { - "sha512": "55coohhmT0Usdq536a54bqGK4ij2D1ZTaJo8lQ3k/piwVx+Dl2r3xmDGsims+jVimQVayU2tXptKSAn9nhgRfA==", - "type": "package", - "path": "runtime.aot.system.threading.tasks/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Threading.Tasks.4.0.11.nupkg.sha512", - "runtime.aot.System.Threading.Tasks.nuspec", - "runtimes/aot/lib/netcore50/System.Threading.Tasks.dll" - ] - }, - "runtime.aot.System.Threading.Timer/4.0.1": { - "sha512": "c4IE4f4MBSzr3b8uSCIpqc70uXbkNJx9oAASbEMhFGdyxljpwz14xYR5hp8AgnF4msF8tPL6zgOf7lDlSo0j/g==", - "type": "package", - "path": "runtime.aot.system.threading.timer/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.aot.System.Threading.Timer.4.0.1.nupkg.sha512", - "runtime.aot.System.Threading.Timer.nuspec", - "runtimes/aot/lib/netcore50/System.Threading.Timer.dll" - ] - }, - "runtime.native.System.IO.Compression/4.1.0": { - "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", - "type": "package", - "path": "runtime.native.system.io.compression/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512", - "runtime.native.System.IO.Compression.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography/4.0.0": { - "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", - "type": "package", - "path": "runtime.native.system.security.cryptography/4.0.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512", - "runtime.native.System.Security.Cryptography.nuspec" - ] - }, - "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "sha512": "0alFxXfT7M+xhhgMkNzG/Mnfii3o+DGQV9gkmhfLr6wsRPNxlIHdz4yQC8ksHqqmOu1Sq0FD9FxrSQyGo+8syA==", - "type": "package", - "path": "runtime.win.microsoft.win32.primitives/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.Microsoft.Win32.Primitives.4.0.1.nupkg.sha512", - "runtime.win.Microsoft.Win32.Primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" - ] - }, - "runtime.win.System.Diagnostics.Debug/4.0.11": { - "sha512": "q8Fm954ezFLfmG0tHNUmsNy+qaEjWtWqYhWh3cGSVjtJwkcBsfigWCh+fdaIVZ9K7m+6lgb3ElL2BBU6G+RijA==", - "type": "package", - "path": "runtime.win.system.diagnostics.debug/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.System.Diagnostics.Debug.4.0.11.nupkg.sha512", - "runtime.win.System.Diagnostics.Debug.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp80/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.IO.FileSystem/4.0.1": { - "sha512": "4FG9RK8J5CsUpXjkiZWS07aJu+H+vTIeQkFKXyjwibfBedUM168SCEaqV3Bjkbv4b3pUuf5Gy1RaqX/HnmKlZw==", - "type": "package", - "path": "runtime.win.system.io.filesystem/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.System.IO.FileSystem.4.0.1.nupkg.sha512", - "runtime.win.System.IO.FileSystem.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp8/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.Net.Primitives/4.0.11": { - "sha512": "36AsEkT9p+4cLHHh7sgSIOPWWeTKMh/DOoeQCzJmaLM8rtD9YaRZMmXGynf77ZP5KoXWwA4Y3aGbntrPbmmlcA==", - "type": "package", - "path": "runtime.win.system.net.primitives/4.0.11", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.System.Net.Primitives.4.0.11.nupkg.sha512", - "runtime.win.System.Net.Primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Primitives.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" - ] - }, - "runtime.win.System.Net.Sockets/4.1.0": { - "sha512": "BviTpQJbl+T/XVkwLw5xupFq9WXKru9KM/2U/ijmLuO2XEeMgdwk3g0e9sHWqvbrLvVT9yDf+SpbRXM1LNxTvA==", - "type": "package", - "path": "runtime.win.system.net.sockets/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.System.Net.Sockets.4.1.0.nupkg.sha512", - "runtime.win.System.Net.Sockets.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Sockets.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" - ] - }, - "runtime.win.System.Runtime.Extensions/4.1.0": { - "sha512": "U3F/M+djxVXuKJaoW2AGpAE2ZWAp372140jsX4d/ctqki+Qb61HuyQY4yUPSA/gdKGbbq6HXzZ6oxB6/G3MYPA==", - "type": "package", - "path": "runtime.win.system.runtime.extensions/4.1.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.System.Runtime.Extensions.4.1.0.nupkg.sha512", - "runtime.win.System.Runtime.Extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" - ] - }, - "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "fzsKrHHfrv6wpLE1sxAHcWoB9vpAyoNjxVTnBJkzeXow2ZivR1H7wdpnsoKXIIb0d2EzYrrezHeHy4gI6tqqTA==", - "type": "package", - "path": "runtime.win10-arm-aot.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression.nuspec", - "runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll" - ] - }, - "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "qr2+iGSxqUjVW3eATYzV4GHN6qQOu5cDTzCGf7VZ4aaxXGv2P/XVk9BkQ6WdPCDitEdIuWmtFYIFvGdvY/qN6Q==", - "type": "package", - "path": "runtime.win10-x64-aot.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression.nuspec", - "runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll" - ] - }, - "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "c3yeCSi1emskJMjeqbX6B+neZRozhYk4et/Lv/6s05Yz30jcwY2Mj5PAr7mvmlAZtP5+HLbxz+Ux+RNNM/1GUA==", - "type": "package", - "path": "runtime.win10-x86-aot.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression.nuspec", - "runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll" - ] - }, - "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": { - "sha512": "pXLZyhN1gFNVjmmZloXzGxbdZyUjkiHKpojzxUxCZ2U+T0jD6ooK3rYhwqFzlSjVKUAdQ9QNDoixxnEr3/5VWw==", - "type": "package", - "path": "runtime.win7-x64.microsoft.netcore.jit/1.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x64.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512", - "runtime.win7-x64.Microsoft.NETCore.Jit.nuspec", - "runtimes/win7-x64-aot/native/_._", - "runtimes/win7-x64/native/clrjit.dll" - ] - }, - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "YaXA5RVLCYIcV1N31A7MJhWJnNkNfGnyRBNH1yYilUrBDvzMxNsbXX2pD7owWsC/go/4LRwbHbdWWXwHowKNvw==", - "type": "package", - "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512", - "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.nuspec", - "runtimes/win7-x64-aot/lib/netstandard1.0/_._", - "runtimes/win7-x64-aot/native/_._", - "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll", - "runtimes/win7-x64/native/System.Private.CoreLib.ni.dll", - "runtimes/win7-x64/native/clretwrc.dll", - "runtimes/win7-x64/native/coreclr.dll", - "runtimes/win7-x64/native/dbgshim.dll", - "runtimes/win7-x64/native/mscordaccore.dll", - "runtimes/win7-x64/native/mscordbi.dll", - "runtimes/win7-x64/native/mscorlib.ni.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll", - "runtimes/win7-x64/native/sos.dll", - "tools/crossgen.exe" - ] - }, - "runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "4LLiT65shsAsGc+mUKV3vUw1SXfOaQWGWoblOYpYuZJSVkA3/LPx92M2GSYyn2sHR/XOFtY5TZmxJKgGlZOLFw==", - "type": "package", - "path": "runtime.win7-x64.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x64.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win7-x64.runtime.native.System.IO.Compression.nuspec", - "runtimes/win7-x64/native/clrcompression.dll" - ] - }, - "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": { - "sha512": "bU1EUneMeB6JltMNDCekL7nP1dluxOlnUgmAFx8EGsD6a+lgaYoDLk7V7F3H5Zpw/LeCxl5XmZqgPObGAlW7Dg==", - "type": "package", - "path": "runtime.win7-x86.microsoft.netcore.jit/1.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x86.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512", - "runtime.win7-x86.Microsoft.NETCore.Jit.nuspec", - "runtimes/win7-x86-aot/native/_._", - "runtimes/win7-x86/native/clrjit.dll" - ] - }, - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "80Jj8QlMLAnTq+BDhoHBnSNXRKqVjjZM9VjHcpw9/F98cBmh80rBdbnM0AAr54htjhzupYvwLqwuKnlzxec04A==", - "type": "package", - "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512", - "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.nuspec", - "runtimes/win7-x86-aot/lib/netstandard1.0/_._", - "runtimes/win7-x86-aot/native/_._", - "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll", - "runtimes/win7-x86/native/System.Private.CoreLib.ni.dll", - "runtimes/win7-x86/native/clretwrc.dll", - "runtimes/win7-x86/native/coreclr.dll", - "runtimes/win7-x86/native/dbgshim.dll", - "runtimes/win7-x86/native/mscordaccore.dll", - "runtimes/win7-x86/native/mscordbi.dll", - "runtimes/win7-x86/native/mscorlib.ni.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll", - "runtimes/win7-x86/native/sos.dll", - "tools/crossgen.exe" - ] - }, - "runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "3jgpS2GhE76QqeoTxCakx6jlX7EIeXvxHnFFDa03Jf++s9+EGnRD38R6GDb1ism73xo6IHe0iev7zd5y+oD3BA==", - "type": "package", - "path": "runtime.win7-x86.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win7-x86.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win7-x86.runtime.native.System.IO.Compression.nuspec", - "runtimes/win7-x86/native/clrcompression.dll" - ] - }, - "runtime.win7.System.Private.Uri/4.0.2": { - "sha512": "N0nsmkEe+e3fl28KZ9LrHQ06XvhTC4FGyWacInV90h3pmty2s0fnG0GZ41rQw8d51s+pLcTQ0dKS0eN0xESY7g==", - "type": "package", - "path": "runtime.win7.system.private.uri/4.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win7.System.Private.Uri.4.0.2.nupkg.sha512", - "runtime.win7.System.Private.Uri.nuspec", - "runtimes/aot/lib/netcore50/System.Private.Uri.dll", - "runtimes/win/lib/netcore50/System.Private.Uri.dll", - "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll" - ] - }, - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "sha512": "0V6sq7Dg0bQPrJtm/Qw5Zu0e7gidnRPLaqUhKIkLYzVn64jkat+JnR6LcezryD3c0Wuva/MdJWYSAaOPq5V/Zw==", - "type": "package", - "path": "runtime.win8-arm.microsoft.netcore.runtime.coreclr/1.0.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard1.0/_._", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512", - "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.nuspec", - "runtimes/win8-arm-aot/lib/netstandard1.0/_._", - "runtimes/win8-arm-aot/native/_._", - "runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll", - "runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll", - "runtimes/win8-arm/native/System.Private.CoreLib.ni.dll", - "runtimes/win8-arm/native/clretwrc.dll", - "runtimes/win8-arm/native/coreclr.dll", - "runtimes/win8-arm/native/dbgshim.dll", - "runtimes/win8-arm/native/mscordaccore.dll", - "runtimes/win8-arm/native/mscordbi.dll", - "runtimes/win8-arm/native/mscorlib.ni.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll", - "runtimes/win8-arm/native/sos.dll", - "tools/crossgen.exe", - "tools/sos.dll" - ] - }, - "runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": { - "sha512": "EwyUwoJJLeSqfmeZoX9nxKx8Q9pEwX5zLLgSwtdH04+TzUYxaDIaoNqH5hfhoaSl2VoDsHGbEnQ6Y5bXLcWSkA==", - "type": "package", - "path": "runtime.win8-arm.runtime.native.system.io.compression/4.0.1", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win8-arm.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512", - "runtime.win8-arm.runtime.native.System.IO.Compression.nuspec", - "runtimes/win8-arm/native/clrcompression.dll" - ] - }, - "System.AppContext/4.1.0": { - "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "type": "package", - "path": "system.appcontext/4.1.0", - "files": [ - "System.AppContext.4.1.0.nupkg.sha512", - "System.AppContext.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll" - ] - }, - "System.Buffers/4.0.0": { - "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", - "type": "package", - "path": "system.buffers/4.0.0", - "files": [ - "System.Buffers.4.0.0.nupkg.sha512", - "System.Buffers.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/.xml", - "lib/netstandard1.1/System.Buffers.dll" - ] - }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", - "type": "package", - "path": "system.collections/4.0.11", - "files": [ - "System.Collections.4.0.11.nupkg.sha512", - "System.Collections.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", - "type": "package", - "path": "system.collections.concurrent/4.0.12", - "files": [ - "System.Collections.Concurrent.4.0.12.nupkg.sha512", - "System.Collections.Concurrent.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", - "type": "package", - "path": "system.collections.immutable/1.2.0", - "files": [ - "System.Collections.Immutable.1.2.0.nupkg.sha512", - "System.Collections.Immutable.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" - ] - }, - "System.Collections.NonGeneric/4.0.1": { - "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==", - "type": "package", - "path": "system.collections.nongeneric/4.0.1", - "files": [ - "System.Collections.NonGeneric.4.0.1.nupkg.sha512", - "System.Collections.NonGeneric.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Collections.Specialized/4.0.1": { - "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==", - "type": "package", - "path": "system.collections.specialized/4.0.1", - "files": [ - "System.Collections.Specialized.4.0.1.nupkg.sha512", - "System.Collections.Specialized.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", - "type": "package", - "path": "system.componentmodel/4.0.1", - "files": [ - "System.ComponentModel.4.0.1.nupkg.sha512", - "System.ComponentModel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ComponentModel.Annotations/4.1.0": { - "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", - "type": "package", - "path": "system.componentmodel.annotations/4.1.0", - "files": [ - "System.ComponentModel.Annotations.4.1.0.nupkg.sha512", - "System.ComponentModel.Annotations.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.11": { - "sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==", - "type": "package", - "path": "system.componentmodel.eventbasedasync/4.0.11", - "files": [ - "System.ComponentModel.EventBasedAsync.4.0.11.nupkg.sha512", - "System.ComponentModel.EventBasedAsync.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.EventBasedAsync.dll", - "lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.EventBasedAsync.dll", - "ref/netcore50/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll", - "ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Data.Common/4.1.0": { - "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==", - "type": "package", - "path": "system.data.common/4.1.0", - "files": [ - "System.Data.Common.4.1.0.nupkg.sha512", - "System.Data.Common.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/System.Data.Common.dll", - "lib/netstandard1.2/System.Data.Common.dll", - "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.dll", - "ref/netstandard1.2/System.Data.Common.xml", - "ref/netstandard1.2/de/System.Data.Common.xml", - "ref/netstandard1.2/es/System.Data.Common.xml", - "ref/netstandard1.2/fr/System.Data.Common.xml", - "ref/netstandard1.2/it/System.Data.Common.xml", - "ref/netstandard1.2/ja/System.Data.Common.xml", - "ref/netstandard1.2/ko/System.Data.Common.xml", - "ref/netstandard1.2/ru/System.Data.Common.xml", - "ref/netstandard1.2/zh-hans/System.Data.Common.xml", - "ref/netstandard1.2/zh-hant/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll", - "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", - "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Diagnostics.Contracts/4.0.1": { - "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==", - "type": "package", - "path": "system.diagnostics.contracts/4.0.1", - "files": [ - "System.Diagnostics.Contracts.4.0.1.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/netstandard1.0/System.Diagnostics.Contracts.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/netcore50/de/System.Diagnostics.Contracts.xml", - "ref/netcore50/es/System.Diagnostics.Contracts.xml", - "ref/netcore50/fr/System.Diagnostics.Contracts.xml", - "ref/netcore50/it/System.Diagnostics.Contracts.xml", - "ref/netcore50/ja/System.Diagnostics.Contracts.xml", - "ref/netcore50/ko/System.Diagnostics.Contracts.xml", - "ref/netcore50/ru/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/System.Diagnostics.Contracts.dll", - "ref/netstandard1.0/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll" - ] - }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", - "type": "package", - "path": "system.diagnostics.debug/4.0.11", - "files": [ - "System.Diagnostics.Debug.4.0.11.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Diagnostics.DiagnosticSource/4.0.0": { - "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.0.0", - "files": [ - "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512", - "System.Diagnostics.DiagnosticSource.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml" - ] - }, - "System.Diagnostics.StackTrace/4.0.2": { - "sha512": "MmP424iVWLyeW7XGtwC5NyfzsIwodFKwhW6yns3d+Sh8WFsFoPWq2cUlJJDAteapIm2qoJ8fc3VwIUroolbsEA==", - "type": "package", - "path": "system.diagnostics.stacktrace/4.0.2", - "files": [ - "System.Diagnostics.StackTrace.4.0.2.nupkg.sha512", - "System.Diagnostics.StackTrace.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", - "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll" - ] - }, - "System.Diagnostics.Tools/4.0.1": { - "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", - "type": "package", - "path": "system.diagnostics.tools/4.0.1", - "files": [ - "System.Diagnostics.Tools.4.0.1.nupkg.sha512", - "System.Diagnostics.Tools.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", - "type": "package", - "path": "system.diagnostics.tracing/4.1.0", - "files": [ - "System.Diagnostics.Tracing.4.1.0.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "type": "package", - "path": "system.dynamic.runtime/4.0.11", - "files": [ - "System.Dynamic.Runtime.4.0.11.nupkg.sha512", - "System.Dynamic.Runtime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" - ] - }, - "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", - "type": "package", - "path": "system.globalization/4.0.11", - "files": [ - "System.Globalization.4.0.11.nupkg.sha512", - "System.Globalization.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Globalization.Calendars/4.0.1": { - "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", - "type": "package", - "path": "system.globalization.calendars/4.0.1", - "files": [ - "System.Globalization.Calendars.4.0.1.nupkg.sha512", - "System.Globalization.Calendars.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Globalization.Extensions/4.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", - "type": "package", - "path": "system.globalization.extensions/4.0.1", - "files": [ - "System.Globalization.Extensions.4.0.1.nupkg.sha512", - "System.Globalization.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll" - ] - }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", - "type": "package", - "path": "system.io/4.1.0", - "files": [ - "System.IO.4.1.0.nupkg.sha512", - "System.IO.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.Compression/4.1.1": { - "sha512": "ac/GG9DNsUr/grHGstCtWDoglgWr1OhL/yAZjXfpXtx52RmVVCpO52pShIDilQrD9dDZxw8zluiXEfezhPaYzg==", - "type": "package", - "path": "system.io.compression/4.1.1", - "files": [ - "System.IO.Compression.4.1.1.nupkg.sha512", - "System.IO.Compression.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll" - ] - }, - "System.IO.Compression.ZipFile/4.0.1": { - "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", - "type": "package", - "path": "system.io.compression.zipfile/4.0.1", - "files": [ - "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512", - "System.IO.Compression.ZipFile.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", - "type": "package", - "path": "system.io.filesystem/4.0.1", - "files": [ - "System.IO.FileSystem.4.0.1.nupkg.sha512", - "System.IO.FileSystem.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", - "type": "package", - "path": "system.io.filesystem.primitives/4.0.1", - "files": [ - "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.IsolatedStorage/4.0.1": { - "sha512": "PuSuDi3FV84wh6RbF+Dvr0BvLJ6MCpvNIdVE3K0sSnOVKEV7mOQ0qnEvO1tWjxquMaugULTxJHHLaxkCHCz4IQ==", - "type": "package", - "path": "system.io.isolatedstorage/4.0.1", - "files": [ - "System.IO.IsolatedStorage.4.0.1.nupkg.sha512", - "System.IO.IsolatedStorage.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netcore50/System.IO.IsolatedStorage.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.4/System.IO.IsolatedStorage.dll", - "ref/netstandard1.4/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/de/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/es/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/fr/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/it/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ja/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ko/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/ru/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/zh-hans/System.IO.IsolatedStorage.xml", - "ref/netstandard1.4/zh-hant/System.IO.IsolatedStorage.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.1": { - "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", - "type": "package", - "path": "system.io.unmanagedmemorystream/4.0.1", - "files": [ - "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512", - "System.IO.UnmanagedMemoryStream.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll", - "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", - "type": "package", - "path": "system.linq/4.1.0", - "files": [ - "System.Linq.4.1.0.nupkg.sha512", - "System.Linq.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "type": "package", - "path": "system.linq.expressions/4.1.0", - "files": [ - "System.Linq.Expressions.4.1.0.nupkg.sha512", - "System.Linq.Expressions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" - ] - }, - "System.Linq.Parallel/4.0.1": { - "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", - "type": "package", - "path": "system.linq.parallel/4.0.1", - "files": [ - "System.Linq.Parallel.4.0.1.nupkg.sha512", - "System.Linq.Parallel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/netstandard1.3/System.Linq.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/netcore50/de/System.Linq.Parallel.xml", - "ref/netcore50/es/System.Linq.Parallel.xml", - "ref/netcore50/fr/System.Linq.Parallel.xml", - "ref/netcore50/it/System.Linq.Parallel.xml", - "ref/netcore50/ja/System.Linq.Parallel.xml", - "ref/netcore50/ko/System.Linq.Parallel.xml", - "ref/netcore50/ru/System.Linq.Parallel.xml", - "ref/netcore50/zh-hans/System.Linq.Parallel.xml", - "ref/netcore50/zh-hant/System.Linq.Parallel.xml", - "ref/netstandard1.1/System.Linq.Parallel.dll", - "ref/netstandard1.1/System.Linq.Parallel.xml", - "ref/netstandard1.1/de/System.Linq.Parallel.xml", - "ref/netstandard1.1/es/System.Linq.Parallel.xml", - "ref/netstandard1.1/fr/System.Linq.Parallel.xml", - "ref/netstandard1.1/it/System.Linq.Parallel.xml", - "ref/netstandard1.1/ja/System.Linq.Parallel.xml", - "ref/netstandard1.1/ko/System.Linq.Parallel.xml", - "ref/netstandard1.1/ru/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Linq.Queryable/4.0.1": { - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "type": "package", - "path": "system.linq.queryable/4.0.1", - "files": [ - "System.Linq.Queryable.4.0.1.nupkg.sha512", - "System.Linq.Queryable.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/netstandard1.3/System.Linq.Queryable.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/netcore50/de/System.Linq.Queryable.xml", - "ref/netcore50/es/System.Linq.Queryable.xml", - "ref/netcore50/fr/System.Linq.Queryable.xml", - "ref/netcore50/it/System.Linq.Queryable.xml", - "ref/netcore50/ja/System.Linq.Queryable.xml", - "ref/netcore50/ko/System.Linq.Queryable.xml", - "ref/netcore50/ru/System.Linq.Queryable.xml", - "ref/netcore50/zh-hans/System.Linq.Queryable.xml", - "ref/netcore50/zh-hant/System.Linq.Queryable.xml", - "ref/netstandard1.0/System.Linq.Queryable.dll", - "ref/netstandard1.0/System.Linq.Queryable.xml", - "ref/netstandard1.0/de/System.Linq.Queryable.xml", - "ref/netstandard1.0/es/System.Linq.Queryable.xml", - "ref/netstandard1.0/fr/System.Linq.Queryable.xml", - "ref/netstandard1.0/it/System.Linq.Queryable.xml", - "ref/netstandard1.0/ja/System.Linq.Queryable.xml", - "ref/netstandard1.0/ko/System.Linq.Queryable.xml", - "ref/netstandard1.0/ru/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Net.Http/4.1.0": { - "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", - "type": "package", - "path": "system.net.http/4.1.0", - "files": [ - "System.Net.Http.4.1.0.nupkg.sha512", - "System.Net.Http.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll" - ] - }, - "System.Net.Http.Rtc/4.0.1": { - "sha512": "o2AlTAvlZOc0dRUpmr379G57VUjSQ+JO7X2vIduaV+zReroM7WVwvtg6q1tGBrT4aVFvqWPDavWuBgSMTwugyw==", - "type": "package", - "path": "system.net.http.rtc/4.0.1", - "files": [ - "System.Net.Http.Rtc.4.0.1.nupkg.sha512", - "System.Net.Http.Rtc.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/win8/_._", - "ref/netcore50/System.Net.Http.Rtc.dll", - "ref/netcore50/System.Net.Http.Rtc.xml", - "ref/netcore50/de/System.Net.Http.Rtc.xml", - "ref/netcore50/es/System.Net.Http.Rtc.xml", - "ref/netcore50/fr/System.Net.Http.Rtc.xml", - "ref/netcore50/it/System.Net.Http.Rtc.xml", - "ref/netcore50/ja/System.Net.Http.Rtc.xml", - "ref/netcore50/ko/System.Net.Http.Rtc.xml", - "ref/netcore50/ru/System.Net.Http.Rtc.xml", - "ref/netcore50/zh-hans/System.Net.Http.Rtc.xml", - "ref/netcore50/zh-hant/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/System.Net.Http.Rtc.dll", - "ref/netstandard1.1/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/de/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/es/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/fr/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/it/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ja/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ko/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/ru/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.Rtc.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.Rtc.xml", - "ref/win8/_._", - "runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll" - ] - }, - "System.Net.NameResolution/4.0.0": { - "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", - "type": "package", - "path": "system.net.nameresolution/4.0.0", - "files": [ - "System.Net.NameResolution.4.0.0.nupkg.sha512", - "System.Net.NameResolution.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.NameResolution.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.xml", - "ref/netstandard1.3/de/System.Net.NameResolution.xml", - "ref/netstandard1.3/es/System.Net.NameResolution.xml", - "ref/netstandard1.3/fr/System.Net.NameResolution.xml", - "ref/netstandard1.3/it/System.Net.NameResolution.xml", - "ref/netstandard1.3/ja/System.Net.NameResolution.xml", - "ref/netstandard1.3/ko/System.Net.NameResolution.xml", - "ref/netstandard1.3/ru/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win/lib/net46/System.Net.NameResolution.dll", - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll" - ] - }, - "System.Net.NetworkInformation/4.1.0": { - "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==", - "type": "package", - "path": "system.net.networkinformation/4.1.0", - "files": [ - "System.Net.NetworkInformation.4.1.0.nupkg.sha512", - "System.Net.NetworkInformation.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.NetworkInformation.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/netcore50/de/System.Net.NetworkInformation.xml", - "ref/netcore50/es/System.Net.NetworkInformation.xml", - "ref/netcore50/fr/System.Net.NetworkInformation.xml", - "ref/netcore50/it/System.Net.NetworkInformation.xml", - "ref/netcore50/ja/System.Net.NetworkInformation.xml", - "ref/netcore50/ko/System.Net.NetworkInformation.xml", - "ref/netcore50/ru/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/System.Net.NetworkInformation.dll", - "ref/netstandard1.0/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/System.Net.NetworkInformation.dll", - "ref/netstandard1.3/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/win/lib/net46/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll" - ] - }, - "System.Net.Primitives/4.0.11": { - "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", - "type": "package", - "path": "system.net.primitives/4.0.11", - "files": [ - "System.Net.Primitives.4.0.11.nupkg.sha512", - "System.Net.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Net.Requests/4.0.11": { - "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", - "type": "package", - "path": "system.net.requests/4.0.11", - "files": [ - "System.Net.Requests.4.0.11.nupkg.sha512", - "System.Net.Requests.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/_._", - "ref/netcore50/System.Net.Requests.dll", - "ref/netcore50/System.Net.Requests.xml", - "ref/netcore50/de/System.Net.Requests.xml", - "ref/netcore50/es/System.Net.Requests.xml", - "ref/netcore50/fr/System.Net.Requests.xml", - "ref/netcore50/it/System.Net.Requests.xml", - "ref/netcore50/ja/System.Net.Requests.xml", - "ref/netcore50/ko/System.Net.Requests.xml", - "ref/netcore50/ru/System.Net.Requests.xml", - "ref/netcore50/zh-hans/System.Net.Requests.xml", - "ref/netcore50/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.0/System.Net.Requests.dll", - "ref/netstandard1.0/System.Net.Requests.xml", - "ref/netstandard1.0/de/System.Net.Requests.xml", - "ref/netstandard1.0/es/System.Net.Requests.xml", - "ref/netstandard1.0/fr/System.Net.Requests.xml", - "ref/netstandard1.0/it/System.Net.Requests.xml", - "ref/netstandard1.0/ja/System.Net.Requests.xml", - "ref/netstandard1.0/ko/System.Net.Requests.xml", - "ref/netstandard1.0/ru/System.Net.Requests.xml", - "ref/netstandard1.0/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.0/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.1/System.Net.Requests.dll", - "ref/netstandard1.1/System.Net.Requests.xml", - "ref/netstandard1.1/de/System.Net.Requests.xml", - "ref/netstandard1.1/es/System.Net.Requests.xml", - "ref/netstandard1.1/fr/System.Net.Requests.xml", - "ref/netstandard1.1/it/System.Net.Requests.xml", - "ref/netstandard1.1/ja/System.Net.Requests.xml", - "ref/netstandard1.1/ko/System.Net.Requests.xml", - "ref/netstandard1.1/ru/System.Net.Requests.xml", - "ref/netstandard1.1/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.1/zh-hant/System.Net.Requests.xml", - "ref/netstandard1.3/System.Net.Requests.dll", - "ref/netstandard1.3/System.Net.Requests.xml", - "ref/netstandard1.3/de/System.Net.Requests.xml", - "ref/netstandard1.3/es/System.Net.Requests.xml", - "ref/netstandard1.3/fr/System.Net.Requests.xml", - "ref/netstandard1.3/it/System.Net.Requests.xml", - "ref/netstandard1.3/ja/System.Net.Requests.xml", - "ref/netstandard1.3/ko/System.Net.Requests.xml", - "ref/netstandard1.3/ru/System.Net.Requests.xml", - "ref/netstandard1.3/zh-hans/System.Net.Requests.xml", - "ref/netstandard1.3/zh-hant/System.Net.Requests.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll", - "runtimes/win/lib/net46/_._", - "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll" - ] - }, - "System.Net.Sockets/4.1.0": { - "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", - "type": "package", - "path": "system.net.sockets/4.1.0", - "files": [ - "System.Net.Sockets.4.1.0.nupkg.sha512", - "System.Net.Sockets.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Net.WebHeaderCollection/4.0.1": { - "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", - "type": "package", - "path": "system.net.webheadercollection/4.0.1", - "files": [ - "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512", - "System.Net.WebHeaderCollection.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Net.WebHeaderCollection.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Net.WebHeaderCollection.dll", - "ref/netstandard1.3/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Net.WebSockets/4.0.0": { - "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==", - "type": "package", - "path": "system.net.websockets/4.0.0", - "files": [ - "System.Net.WebSockets.4.0.0.nupkg.sha512", - "System.Net.WebSockets.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.dll", - "lib/netstandard1.3/System.Net.WebSockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.dll", - "ref/netstandard1.3/System.Net.WebSockets.dll", - "ref/netstandard1.3/System.Net.WebSockets.xml", - "ref/netstandard1.3/de/System.Net.WebSockets.xml", - "ref/netstandard1.3/es/System.Net.WebSockets.xml", - "ref/netstandard1.3/fr/System.Net.WebSockets.xml", - "ref/netstandard1.3/it/System.Net.WebSockets.xml", - "ref/netstandard1.3/ja/System.Net.WebSockets.xml", - "ref/netstandard1.3/ko/System.Net.WebSockets.xml", - "ref/netstandard1.3/ru/System.Net.WebSockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Net.WebSockets.Client/4.0.0": { - "sha512": "GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==", - "type": "package", - "path": "system.net.websockets.client/4.0.0", - "files": [ - "System.Net.WebSockets.Client.4.0.0.nupkg.sha512", - "System.Net.WebSockets.Client.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.WebSockets.Client.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.WebSockets.Client.dll", - "ref/netstandard1.3/System.Net.WebSockets.Client.dll", - "ref/netstandard1.3/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/de/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/es/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/it/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml", - "ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/net46/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll", - "runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll" - ] - }, - "System.Numerics.Vectors/4.1.1": { - "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", - "type": "package", - "path": "system.numerics.vectors/4.1.1", - "files": [ - "System.Numerics.Vectors.4.1.1.nupkg.sha512", - "System.Numerics.Vectors.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Numerics.Vectors.WindowsRuntime/4.0.1": { - "sha512": "T4RJY6Z+0AuynCnMy8VMyP1g2mrB/OGubx5Og6d8ve6LkVLPrpiGtV5iMJeBv7lTDF1zhviILg+LecgKBjkWag==", - "type": "package", - "path": "system.numerics.vectors.windowsruntime/4.0.1", - "files": [ - "System.Numerics.Vectors.WindowsRuntime.4.0.1.nupkg.sha512", - "System.Numerics.Vectors.WindowsRuntime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll" - ] - }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "type": "package", - "path": "system.objectmodel/4.0.12", - "files": [ - "System.ObjectModel.4.0.12.nupkg.sha512", - "System.ObjectModel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Private.DataContractSerialization/4.1.2": { - "sha512": "e700XsW/HO7qlnatKyVXEFHJMNXDkPOkn4pmpddXcJk6KEsnYIpJUHDFycHKB3mRVsgRtUYiDRbRKhecwo2ezg==", - "type": "package", - "path": "system.private.datacontractserialization/4.1.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.3/System.Private.DataContractSerialization.dll", - "ref/netstandard/_._", - "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", - "system.private.datacontractserialization.4.1.2.nupkg.sha512", - "system.private.datacontractserialization.nuspec" - ] - }, - "System.Private.ServiceModel/4.1.0": { - "sha512": "/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==", - "type": "package", - "path": "system.private.servicemodel/4.1.0", - "files": [ - "System.Private.ServiceModel.4.1.0.nupkg.sha512", - "System.Private.ServiceModel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll", - "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll", - "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll" - ] - }, - "System.Private.Uri/4.0.1": { - "sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==", - "type": "package", - "path": "system.private.uri/4.0.1", - "files": [ - "System.Private.Uri.4.0.1.nupkg.sha512", - "System.Private.Uri.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._" - ] - }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", - "type": "package", - "path": "system.reflection/4.1.0", - "files": [ - "System.Reflection.4.1.0.nupkg.sha512", - "System.Reflection.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.Context/4.0.1": { - "sha512": "nU4qA/juVb7OCAqLdWAnxeyTjs5tbwQmtF6ep1gTVSa79aGF1J5orD88WHQmNhgVbgfhSGPnz4+d94o/iBXZ7g==", - "type": "package", - "path": "system.reflection.context/4.0.1", - "files": [ - "System.Reflection.Context.4.0.1.nupkg.sha512", - "System.Reflection.Context.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Context.dll", - "lib/netstandard1.1/System.Reflection.Context.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "ref/netcore50/de/System.Reflection.Context.xml", - "ref/netcore50/es/System.Reflection.Context.xml", - "ref/netcore50/fr/System.Reflection.Context.xml", - "ref/netcore50/it/System.Reflection.Context.xml", - "ref/netcore50/ja/System.Reflection.Context.xml", - "ref/netcore50/ko/System.Reflection.Context.xml", - "ref/netcore50/ru/System.Reflection.Context.xml", - "ref/netcore50/zh-hans/System.Reflection.Context.xml", - "ref/netcore50/zh-hant/System.Reflection.Context.xml", - "ref/netstandard1.1/System.Reflection.Context.dll", - "ref/netstandard1.1/System.Reflection.Context.xml", - "ref/netstandard1.1/de/System.Reflection.Context.xml", - "ref/netstandard1.1/es/System.Reflection.Context.xml", - "ref/netstandard1.1/fr/System.Reflection.Context.xml", - "ref/netstandard1.1/it/System.Reflection.Context.xml", - "ref/netstandard1.1/ja/System.Reflection.Context.xml", - "ref/netstandard1.1/ko/System.Reflection.Context.xml", - "ref/netstandard1.1/ru/System.Reflection.Context.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Context.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Context.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._" - ] - }, - "System.Reflection.DispatchProxy/4.0.1": { - "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", - "type": "package", - "path": "system.reflection.dispatchproxy/4.0.1", - "files": [ - "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512", - "System.Reflection.DispatchProxy.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", - "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll" - ] - }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "type": "package", - "path": "system.reflection.emit/4.0.1", - "files": [ - "System.Reflection.Emit.4.0.1.nupkg.sha512", - "System.Reflection.Emit.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinmac20/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.0.1", - "files": [ - "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", - "type": "package", - "path": "system.reflection.extensions/4.0.1", - "files": [ - "System.Reflection.Extensions.4.0.1.nupkg.sha512", - "System.Reflection.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.Metadata/1.3.0": { - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", - "type": "package", - "path": "system.reflection.metadata/1.3.0", - "files": [ - "System.Reflection.Metadata.1.3.0.nupkg.sha512", - "System.Reflection.Metadata.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml" - ] - }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", - "type": "package", - "path": "system.reflection.primitives/4.0.1", - "files": [ - "System.Reflection.Primitives.4.0.1.nupkg.sha512", - "System.Reflection.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", - "type": "package", - "path": "system.reflection.typeextensions/4.1.0", - "files": [ - "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" - ] - }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", - "type": "package", - "path": "system.resources.resourcemanager/4.0.1", - "files": [ - "System.Resources.ResourceManager.4.0.1.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", - "type": "package", - "path": "system.runtime/4.1.0", - "files": [ - "System.Runtime.4.1.0.nupkg.sha512", - "System.Runtime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", - "type": "package", - "path": "system.runtime.extensions/4.1.0", - "files": [ - "System.Runtime.Extensions.4.1.0.nupkg.sha512", - "System.Runtime.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", - "type": "package", - "path": "system.runtime.handles/4.0.1", - "files": [ - "System.Runtime.Handles.4.0.1.nupkg.sha512", - "System.Runtime.Handles.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", - "type": "package", - "path": "system.runtime.interopservices/4.1.0", - "files": [ - "System.Runtime.InteropServices.4.1.0.nupkg.sha512", - "System.Runtime.InteropServices.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.1": { - "sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==", - "type": "package", - "path": "system.runtime.interopservices.windowsruntime/4.0.1", - "files": [ - "System.Runtime.InteropServices.WindowsRuntime.4.0.1.nupkg.sha512", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios1/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll" - ] - }, - "System.Runtime.Numerics/4.0.1": { - "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", - "type": "package", - "path": "system.runtime.numerics/4.0.1", - "files": [ - "System.Runtime.Numerics.4.0.1.nupkg.sha512", - "System.Runtime.Numerics.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Runtime.Serialization.Json/4.0.3": { - "sha512": "siAQb9mZmY7dsBtdbC0OE7W1/y4DGgrIRHTghtN40v79wAvHluBm1wzlrCauCWMyp6WVxkcTzoesjZnx5+fM9g==", - "type": "package", - "path": "system.runtime.serialization.json/4.0.3", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Serialization.Json.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Serialization.Json.dll", - "ref/netcore50/System.Runtime.Serialization.Json.xml", - "ref/netcore50/de/System.Runtime.Serialization.Json.xml", - "ref/netcore50/es/System.Runtime.Serialization.Json.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Json.xml", - "ref/netcore50/it/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Json.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Json.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.json.4.0.3.nupkg.sha512", - "system.runtime.serialization.json.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "files": [ - "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512", - "System.Runtime.Serialization.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Primitives.dll", - "lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll" - ] - }, - "System.Runtime.Serialization.Xml/4.1.2": { - "sha512": "MDlAdO3DaLsoeGOadY811tONi+sz3qiaLwT0B+Plr6dwFfx2RNM+turm1cz1G1jKy2zZP86x417COdMIRsWZxw==", - "type": "package", - "path": "system.runtime.serialization.xml/4.1.2", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Xml.dll", - "lib/netcore50/System.Runtime.Serialization.Xml.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.dll", - "ref/netcore50/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.serialization.xml.4.1.2.nupkg.sha512", - "system.runtime.serialization.xml.nuspec" - ] - }, - "System.Runtime.WindowsRuntime/4.0.11": { - "sha512": "C7rjmukRI0zE1Upl9hhmO4ZxasFYUTadXtgikLTgWwmIwa1jAD7yhOHKX3odajlRnSt34Ih+5VZliaqfFvQOcg==", - "type": "package", - "path": "system.runtime.windowsruntime/4.0.11", - "files": [ - "System.Runtime.WindowsRuntime.4.0.11.nupkg.sha512", - "System.Runtime.WindowsRuntime.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/portable-win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/de/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/es/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/fr/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/it/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ja/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ko/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/ru/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/System.Runtime.WindowsRuntime.dll", - "ref/netstandard1.0/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/de/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/es/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/fr/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/it/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ja/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ko/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/ru/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/System.Runtime.WindowsRuntime.dll", - "ref/netstandard1.2/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/de/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/es/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/fr/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/it/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ja/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ko/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/ru/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/portable-win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll" - ] - }, - "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": { - "sha512": "ZG2uW8JYmFs1sGlhhAoW/F5WmZotkeSxzMils72qGEsJI6+JcQUa6oleSujULC4nk13F5Us9zvlvD2WfB+9Thw==", - "type": "package", - "path": "system.runtime.windowsruntime.ui.xaml/4.0.1", - "files": [ - "System.Runtime.WindowsRuntime.UI.Xaml.4.0.1.nupkg.sha512", - "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/portable-win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.dll", - "ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", - "ref/portable-win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll" - ] - }, - "System.Security.Claims/4.0.1": { - "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", - "type": "package", - "path": "system.security.claims/4.0.1", - "files": [ - "System.Security.Claims.4.0.1.nupkg.sha512", - "System.Security.Claims.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Claims.dll", - "lib/netstandard1.3/System.Security.Claims.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.dll", - "ref/netstandard1.3/System.Security.Claims.xml", - "ref/netstandard1.3/de/System.Security.Claims.xml", - "ref/netstandard1.3/es/System.Security.Claims.xml", - "ref/netstandard1.3/fr/System.Security.Claims.xml", - "ref/netstandard1.3/it/System.Security.Claims.xml", - "ref/netstandard1.3/ja/System.Security.Claims.xml", - "ref/netstandard1.3/ko/System.Security.Claims.xml", - "ref/netstandard1.3/ru/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", - "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Security.Cryptography.Algorithms/4.2.0": { - "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.2.0", - "files": [ - "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512", - "System.Security.Cryptography.Algorithms.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll" - ] - }, - "System.Security.Cryptography.Cng/4.2.0": { - "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", - "type": "package", - "path": "system.security.cryptography.cng/4.2.0", - "files": [ - "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512", - "System.Security.Cryptography.Cng.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll" - ] - }, - "System.Security.Cryptography.Encoding/4.0.0": { - "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", - "type": "package", - "path": "system.security.cryptography.encoding/4.0.0", - "files": [ - "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512", - "System.Security.Cryptography.Encoding.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" - ] - }, - "System.Security.Cryptography.Primitives/4.0.0": { - "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", - "type": "package", - "path": "system.security.cryptography.primitives/4.0.0", - "files": [ - "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512", - "System.Security.Cryptography.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Security.Cryptography.X509Certificates/4.1.0": { - "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.1.0", - "files": [ - "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512", - "System.Security.Cryptography.X509Certificates.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll" - ] - }, - "System.Security.Principal/4.0.1": { - "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", - "type": "package", - "path": "system.security.principal/4.0.1", - "files": [ - "System.Security.Principal.4.0.1.nupkg.sha512", - "System.Security.Principal.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/netstandard1.0/System.Security.Principal.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/netcore50/de/System.Security.Principal.xml", - "ref/netcore50/es/System.Security.Principal.xml", - "ref/netcore50/fr/System.Security.Principal.xml", - "ref/netcore50/it/System.Security.Principal.xml", - "ref/netcore50/ja/System.Security.Principal.xml", - "ref/netcore50/ko/System.Security.Principal.xml", - "ref/netcore50/ru/System.Security.Principal.xml", - "ref/netcore50/zh-hans/System.Security.Principal.xml", - "ref/netcore50/zh-hant/System.Security.Principal.xml", - "ref/netstandard1.0/System.Security.Principal.dll", - "ref/netstandard1.0/System.Security.Principal.xml", - "ref/netstandard1.0/de/System.Security.Principal.xml", - "ref/netstandard1.0/es/System.Security.Principal.xml", - "ref/netstandard1.0/fr/System.Security.Principal.xml", - "ref/netstandard1.0/it/System.Security.Principal.xml", - "ref/netstandard1.0/ja/System.Security.Principal.xml", - "ref/netstandard1.0/ko/System.Security.Principal.xml", - "ref/netstandard1.0/ru/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", - "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ServiceModel.Duplex/4.0.1": { - "sha512": "4I6WSQP4BiT3yG5NetAyAb626e2HlsgSzkiiqGtf4LxGpO3uFQ4eGSXsgVRnxJoDYcnDCH7q215eH/jZBMmx+w==", - "type": "package", - "path": "system.servicemodel.duplex/4.0.1", - "files": [ - "System.ServiceModel.Duplex.4.0.1.nupkg.sha512", - "System.ServiceModel.Duplex.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/netstandard1.3/System.ServiceModel.Duplex.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netcore50/System.ServiceModel.Duplex.xml", - "ref/netcore50/de/System.ServiceModel.Duplex.xml", - "ref/netcore50/es/System.ServiceModel.Duplex.xml", - "ref/netcore50/fr/System.ServiceModel.Duplex.xml", - "ref/netcore50/it/System.ServiceModel.Duplex.xml", - "ref/netcore50/ja/System.ServiceModel.Duplex.xml", - "ref/netcore50/ko/System.ServiceModel.Duplex.xml", - "ref/netcore50/ru/System.ServiceModel.Duplex.xml", - "ref/netcore50/zh-hans/System.ServiceModel.Duplex.xml", - "ref/netcore50/zh-hant/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/System.ServiceModel.Duplex.dll", - "ref/netstandard1.1/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/de/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/es/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/fr/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/it/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/ja/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/ko/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/ru/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/zh-hans/System.ServiceModel.Duplex.xml", - "ref/netstandard1.1/zh-hant/System.ServiceModel.Duplex.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Http/4.1.0": { - "sha512": "sCIV+wrA4Antjnk0+fk6rxpzQkd2bReN4UTipGv5iyPNApVv/KtAfeDMg+YIajJ7VkQD60uVBTQmy3LZrRnNOw==", - "type": "package", - "path": "system.servicemodel.http/4.1.0", - "files": [ - "System.ServiceModel.Http.4.1.0.nupkg.sha512", - "System.ServiceModel.Http.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Http.dll", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/netstandard1.3/System.ServiceModel.Http.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Http.dll", - "ref/netcore50/System.ServiceModel.Http.dll", - "ref/netcore50/System.ServiceModel.Http.xml", - "ref/netcore50/de/System.ServiceModel.Http.xml", - "ref/netcore50/es/System.ServiceModel.Http.xml", - "ref/netcore50/fr/System.ServiceModel.Http.xml", - "ref/netcore50/it/System.ServiceModel.Http.xml", - "ref/netcore50/ja/System.ServiceModel.Http.xml", - "ref/netcore50/ko/System.ServiceModel.Http.xml", - "ref/netcore50/ru/System.ServiceModel.Http.xml", - "ref/netcore50/zh-hans/System.ServiceModel.Http.xml", - "ref/netcore50/zh-hant/System.ServiceModel.Http.xml", - "ref/netstandard1.0/System.ServiceModel.Http.dll", - "ref/netstandard1.0/System.ServiceModel.Http.xml", - "ref/netstandard1.0/de/System.ServiceModel.Http.xml", - "ref/netstandard1.0/es/System.ServiceModel.Http.xml", - "ref/netstandard1.0/fr/System.ServiceModel.Http.xml", - "ref/netstandard1.0/it/System.ServiceModel.Http.xml", - "ref/netstandard1.0/ja/System.ServiceModel.Http.xml", - "ref/netstandard1.0/ko/System.ServiceModel.Http.xml", - "ref/netstandard1.0/ru/System.ServiceModel.Http.xml", - "ref/netstandard1.0/zh-hans/System.ServiceModel.Http.xml", - "ref/netstandard1.0/zh-hant/System.ServiceModel.Http.xml", - "ref/netstandard1.1/System.ServiceModel.Http.dll", - "ref/netstandard1.1/System.ServiceModel.Http.xml", - "ref/netstandard1.1/de/System.ServiceModel.Http.xml", - "ref/netstandard1.1/es/System.ServiceModel.Http.xml", - "ref/netstandard1.1/fr/System.ServiceModel.Http.xml", - "ref/netstandard1.1/it/System.ServiceModel.Http.xml", - "ref/netstandard1.1/ja/System.ServiceModel.Http.xml", - "ref/netstandard1.1/ko/System.ServiceModel.Http.xml", - "ref/netstandard1.1/ru/System.ServiceModel.Http.xml", - "ref/netstandard1.1/zh-hans/System.ServiceModel.Http.xml", - "ref/netstandard1.1/zh-hant/System.ServiceModel.Http.xml", - "ref/netstandard1.3/System.ServiceModel.Http.dll", - "ref/netstandard1.3/System.ServiceModel.Http.xml", - "ref/netstandard1.3/de/System.ServiceModel.Http.xml", - "ref/netstandard1.3/es/System.ServiceModel.Http.xml", - "ref/netstandard1.3/fr/System.ServiceModel.Http.xml", - "ref/netstandard1.3/it/System.ServiceModel.Http.xml", - "ref/netstandard1.3/ja/System.ServiceModel.Http.xml", - "ref/netstandard1.3/ko/System.ServiceModel.Http.xml", - "ref/netstandard1.3/ru/System.ServiceModel.Http.xml", - "ref/netstandard1.3/zh-hans/System.ServiceModel.Http.xml", - "ref/netstandard1.3/zh-hant/System.ServiceModel.Http.xml", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ServiceModel.NetTcp/4.1.0": { - "sha512": "n+Ir2B9SAd5XwAaXPIpLQsbaDcscSsyJH0ODpm5tpK8xXxmLhiPct5kujzeAiAhB37lVSetrSINdFb1Llg2ngg==", - "type": "package", - "path": "system.servicemodel.nettcp/4.1.0", - "files": [ - "System.ServiceModel.NetTcp.4.1.0.nupkg.sha512", - "System.ServiceModel.NetTcp.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/net46/System.ServiceModel.NetTcp.dll", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.xml", - "ref/netcore50/de/System.ServiceModel.NetTcp.xml", - "ref/netcore50/es/System.ServiceModel.NetTcp.xml", - "ref/netcore50/fr/System.ServiceModel.NetTcp.xml", - "ref/netcore50/it/System.ServiceModel.NetTcp.xml", - "ref/netcore50/ja/System.ServiceModel.NetTcp.xml", - "ref/netcore50/ko/System.ServiceModel.NetTcp.xml", - "ref/netcore50/ru/System.ServiceModel.NetTcp.xml", - "ref/netcore50/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/netcore50/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.1/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/de/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/es/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/fr/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/it/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/ja/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/ko/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/ru/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.1/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.3/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/de/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/es/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/fr/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/it/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/ja/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/ko/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/ru/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/zh-hans/System.ServiceModel.NetTcp.xml", - "ref/netstandard1.3/zh-hant/System.ServiceModel.NetTcp.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._" - ] - }, - "System.ServiceModel.Primitives/4.1.0": { - "sha512": "Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==", - "type": "package", - "path": "system.servicemodel.primitives/4.1.0", - "files": [ - "System.ServiceModel.Primitives.4.1.0.nupkg.sha512", - "System.ServiceModel.Primitives.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Primitives.dll", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/netstandard1.3/System.ServiceModel.Primitives.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.xml", - "ref/netcore50/de/System.ServiceModel.Primitives.xml", - "ref/netcore50/es/System.ServiceModel.Primitives.xml", - "ref/netcore50/fr/System.ServiceModel.Primitives.xml", - "ref/netcore50/it/System.ServiceModel.Primitives.xml", - "ref/netcore50/ja/System.ServiceModel.Primitives.xml", - "ref/netcore50/ko/System.ServiceModel.Primitives.xml", - "ref/netcore50/ru/System.ServiceModel.Primitives.xml", - "ref/netcore50/zh-hans/System.ServiceModel.Primitives.xml", - "ref/netcore50/zh-hant/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/System.ServiceModel.Primitives.dll", - "ref/netstandard1.0/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/de/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/es/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/it/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ServiceModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/System.ServiceModel.Primitives.dll", - "ref/netstandard1.1/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/de/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/es/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/fr/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/it/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/ja/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/ko/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/ru/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.ServiceModel.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/System.ServiceModel.Primitives.dll", - "ref/netstandard1.3/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/de/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/es/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/fr/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/it/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/ja/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/ko/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/ru/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.ServiceModel.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.ServiceModel.Primitives.xml", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.ServiceModel.Security/4.0.1": { - "sha512": "82pkDb6LMq/NHi+DVHZ7zKHMMJ7mR6rVl9TpH+p8zJhZrVYJez9vTbdMsxQhbNOngEkJKzZFveNYpaRv/3RMsg==", - "type": "package", - "path": "system.servicemodel.security/4.0.1", - "files": [ - "System.ServiceModel.Security.4.0.1.nupkg.sha512", - "System.ServiceModel.Security.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net45/_._", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/netstandard1.3/System.ServiceModel.Security.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "ref/net45/_._", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netcore50/System.ServiceModel.Security.xml", - "ref/netcore50/de/System.ServiceModel.Security.xml", - "ref/netcore50/es/System.ServiceModel.Security.xml", - "ref/netcore50/fr/System.ServiceModel.Security.xml", - "ref/netcore50/it/System.ServiceModel.Security.xml", - "ref/netcore50/ja/System.ServiceModel.Security.xml", - "ref/netcore50/ko/System.ServiceModel.Security.xml", - "ref/netcore50/ru/System.ServiceModel.Security.xml", - "ref/netcore50/zh-hans/System.ServiceModel.Security.xml", - "ref/netcore50/zh-hant/System.ServiceModel.Security.xml", - "ref/netstandard1.0/System.ServiceModel.Security.dll", - "ref/netstandard1.0/System.ServiceModel.Security.xml", - "ref/netstandard1.0/de/System.ServiceModel.Security.xml", - "ref/netstandard1.0/es/System.ServiceModel.Security.xml", - "ref/netstandard1.0/fr/System.ServiceModel.Security.xml", - "ref/netstandard1.0/it/System.ServiceModel.Security.xml", - "ref/netstandard1.0/ja/System.ServiceModel.Security.xml", - "ref/netstandard1.0/ko/System.ServiceModel.Security.xml", - "ref/netstandard1.0/ru/System.ServiceModel.Security.xml", - "ref/netstandard1.0/zh-hans/System.ServiceModel.Security.xml", - "ref/netstandard1.0/zh-hant/System.ServiceModel.Security.xml", - "ref/netstandard1.1/System.ServiceModel.Security.dll", - "ref/netstandard1.1/System.ServiceModel.Security.xml", - "ref/netstandard1.1/de/System.ServiceModel.Security.xml", - "ref/netstandard1.1/es/System.ServiceModel.Security.xml", - "ref/netstandard1.1/fr/System.ServiceModel.Security.xml", - "ref/netstandard1.1/it/System.ServiceModel.Security.xml", - "ref/netstandard1.1/ja/System.ServiceModel.Security.xml", - "ref/netstandard1.1/ko/System.ServiceModel.Security.xml", - "ref/netstandard1.1/ru/System.ServiceModel.Security.xml", - "ref/netstandard1.1/zh-hans/System.ServiceModel.Security.xml", - "ref/netstandard1.1/zh-hant/System.ServiceModel.Security.xml", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._" - ] - }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", - "type": "package", - "path": "system.text.encoding/4.0.11", - "files": [ - "System.Text.Encoding.4.0.11.nupkg.sha512", - "System.Text.Encoding.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Text.Encoding.CodePages/4.0.1": { - "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", - "type": "package", - "path": "system.text.encoding.codepages/4.0.1", - "files": [ - "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512", - "System.Text.Encoding.CodePages.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", - "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" - ] - }, - "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", - "type": "package", - "path": "system.text.encoding.extensions/4.0.11", - "files": [ - "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", - "type": "package", - "path": "system.text.regularexpressions/4.1.0", - "files": [ - "System.Text.RegularExpressions.4.1.0.nupkg.sha512", - "System.Text.RegularExpressions.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", - "type": "package", - "path": "system.threading/4.0.11", - "files": [ - "System.Threading.4.0.11.nupkg.sha512", - "System.Threading.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll" - ] - }, - "System.Threading.Overlapped/4.0.1": { - "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", - "type": "package", - "path": "system.threading.overlapped/4.0.1", - "files": [ - "System.Threading.Overlapped.4.0.1.nupkg.sha512", - "System.Threading.Overlapped.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll" - ] - }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", - "type": "package", - "path": "system.threading.tasks/4.0.11", - "files": [ - "System.Threading.Tasks.4.0.11.nupkg.sha512", - "System.Threading.Tasks.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading.Tasks.Dataflow/4.6.0": { - "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", - "type": "package", - "path": "system.threading.tasks.dataflow/4.6.0", - "files": [ - "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512", - "System.Threading.Tasks.Dataflow.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML", - "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll", - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML", - "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll" - ] - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "type": "package", - "path": "system.threading.tasks.extensions/4.3.0", - "files": [ - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "system.threading.tasks.extensions.nuspec" - ] - }, - "System.Threading.Tasks.Parallel/4.0.1": { - "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", - "type": "package", - "path": "system.threading.tasks.parallel/4.0.1", - "files": [ - "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512", - "System.Threading.Tasks.Parallel.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", - "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Threading.Timer/4.0.1": { - "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", - "type": "package", - "path": "system.threading.timer/4.0.1", - "files": [ - "System.Threading.Timer.4.0.1.nupkg.sha512", - "System.Threading.Timer.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.ReaderWriter/4.0.11": { - "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", - "type": "package", - "path": "system.xml.readerwriter/4.0.11", - "files": [ - "System.Xml.ReaderWriter.4.0.11.nupkg.sha512", - "System.Xml.ReaderWriter.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XDocument/4.0.11": { - "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", - "type": "package", - "path": "system.xml.xdocument/4.0.11", - "files": [ - "System.Xml.XDocument.4.0.11.nupkg.sha512", - "System.Xml.XDocument.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XmlDocument/4.0.1": { - "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", - "type": "package", - "path": "system.xml.xmldocument/4.0.1", - "files": [ - "System.Xml.XmlDocument.4.0.1.nupkg.sha512", - "System.Xml.XmlDocument.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "System.Xml.XmlSerializer/4.0.11": { - "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "type": "package", - "path": "system.xml.xmlserializer/4.0.11", - "files": [ - "System.Xml.XmlSerializer.4.0.11.nupkg.sha512", - "System.Xml.XmlSerializer.nuspec", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XmlSerializer.dll", - "lib/netstandard1.3/System.Xml.XmlSerializer.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XmlSerializer.dll", - "ref/netcore50/System.Xml.XmlSerializer.xml", - "ref/netcore50/de/System.Xml.XmlSerializer.xml", - "ref/netcore50/es/System.Xml.XmlSerializer.xml", - "ref/netcore50/fr/System.Xml.XmlSerializer.xml", - "ref/netcore50/it/System.Xml.XmlSerializer.xml", - "ref/netcore50/ja/System.Xml.XmlSerializer.xml", - "ref/netcore50/ko/System.Xml.XmlSerializer.xml", - "ref/netcore50/ru/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/System.Xml.XmlSerializer.dll", - "ref/netstandard1.0/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/System.Xml.XmlSerializer.dll", - "ref/netstandard1.3/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll" - ] - }, - "Win2D.uwp/1.21.0": { - "sha512": "4Ds/p7HgysgV67pBo/+w7Lidj08Hfa4GD9Zg9HdN3/zLfzRPttHrIn2TUiOUZCgH4eLVJwzOk114ntv4bveS1Q==", - "type": "package", - "path": "win2d.uwp/1.21.0", - "files": [ - "Win2d.githash.txt", - "build/native/Win2D.uwp.targets", - "include/Microsoft.Graphics.Canvas.h", - "include/Microsoft.Graphics.Canvas.native.h", - "lib/uap10.0/Microsoft.Graphics.Canvas.winmd", - "lib/uap10.0/Microsoft.Graphics.Canvas.xml", - "runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll", - "runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll", - "win2d.uwp.1.21.0.nupkg.sha512", - "win2d.uwp.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "JetBrains.Annotations >= 10.4.0", - "Microsoft.NETCore.UniversalWindowsPlatform >= 5.3.3", - "System.Threading.Tasks.Extensions >= 4.3.0", - "Win2D.uwp >= 1.21.0" - ], - "UAP,Version=v10.0": [] - }, - "packageFolders": { - "C:\\Users\\Chris\\.nuget\\packages\\": {} - }, - "project": { - "restore": { - "projectUniqueName": "C:\\Users\\Chris\\Documents\\GitHub\\UICompositionAnimations\\UICompositionAnimations\\UICompositionAnimations.csproj", - "projectName": "UICompositionAnimations", - "projectPath": "C:\\Users\\Chris\\Documents\\GitHub\\UICompositionAnimations\\UICompositionAnimations\\UICompositionAnimations.csproj", - "projectJsonPath": "C:\\Users\\Chris\\Documents\\GitHub\\UICompositionAnimations\\UICompositionAnimations\\project.json", - "projectStyle": "ProjectJson" - }, - "dependencies": { - "JetBrains.Annotations": "10.4.0", - "Microsoft.NETCore.UniversalWindowsPlatform": "5.3.3", - "System.Threading.Tasks.Extensions": "4.3.0", - "Win2D.uwp": "1.21.0" - }, - "frameworks": { - "uap10.0": {} - }, - "runtimes": { - "win10-arm": { - "#import": [] - }, - "win10-arm-aot": { - "#import": [] - }, - "win10-x64": { - "#import": [] - }, - "win10-x64-aot": { - "#import": [] - }, - "win10-x86": { - "#import": [] - }, - "win10-x86-aot": { - "#import": [] - } - } - } -} \ No newline at end of file