diff --git a/src/NuGet.Core/NuGet.Commands/RestoreCommand/Utility/LockFileUtils.cs b/src/NuGet.Core/NuGet.Commands/RestoreCommand/Utility/LockFileUtils.cs index d80761746a8..b35e5095096 100644 --- a/src/NuGet.Core/NuGet.Commands/RestoreCommand/Utility/LockFileUtils.cs +++ b/src/NuGet.Core/NuGet.Commands/RestoreCommand/Utility/LockFileUtils.cs @@ -691,11 +691,6 @@ private static IEnumerable GetLockFileItems( { newItem.Properties["locale"] = (string)locale; } - object related; - if (item.Properties.TryGetValue("related", out related)) - { - newItem.Properties["related"] = (string)related; - } additionalAction?.Invoke(newItem); yield return newItem; } diff --git a/src/NuGet.Core/NuGet.Packaging/ContentModel/ContentItemCollection.cs b/src/NuGet.Core/NuGet.Packaging/ContentModel/ContentItemCollection.cs index 292fc2e2170..7e64b55face 100644 --- a/src/NuGet.Core/NuGet.Packaging/ContentModel/ContentItemCollection.cs +++ b/src/NuGet.Core/NuGet.Packaging/ContentModel/ContentItemCollection.cs @@ -2,9 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using System.Collections.Concurrent; using System.Collections.Generic; -using System.IO; using System.Linq; using NuGet.Packaging; @@ -13,7 +11,6 @@ namespace NuGet.ContentModel public class ContentItemCollection { private List _assets; - private ConcurrentDictionary _assemblyRelatedExtensions; /// /// True if lib/contract exists @@ -22,9 +19,6 @@ public class ContentItemCollection public void Load(IEnumerable paths) { - // Cache for assembly and it's related file extensions. - _assemblyRelatedExtensions = new ConcurrentDictionary(); - // Read already loaded assets _assets = new List(); @@ -274,15 +268,6 @@ private IList FindItemsImplementation(PatternSet definition, IEnume var contentItem = pathPattern.Match(path, definition.PropertyDefinitions); if (contentItem != null) { - //If the item is assembly, populate the "related files extentions property". - if (contentItem.Properties.ContainsKey("assembly")) - { - string relatedFileExtensionsProperty = GetRelatedFileExtensionProperty(contentItem.Path, assets); - if (relatedFileExtensionsProperty is not null) - { - contentItem.Properties.Add("related", relatedFileExtensionsProperty); - } - } itemsList.Add(contentItem); break; } @@ -292,56 +277,6 @@ private IList FindItemsImplementation(PatternSet definition, IEnume return itemsList; } - internal string GetRelatedFileExtensionProperty(string assemblyPath, IEnumerable assets) - { - //E.g. if path is "lib/net472/A.B.C.dll", the prefix will be "lib/net472/A.B.C." - string assemblyPrefix = assemblyPath.Substring(0, assemblyPath.LastIndexOf('.') + 1); - - if (_assemblyRelatedExtensions.TryGetValue(assemblyPrefix, out string relatedProperty)) - { - return relatedProperty; - } - - List relatedFileExtensionList = null; - foreach (Asset asset in assets) - { - if (asset.Path is not null) - { - string extension = Path.GetExtension(asset.Path); - if (extension != string.Empty && - //Assembly properties are files with extensions ".dll", ".winmd", ".exe", see ManagedCodeConventions. - !extension.Equals(".dll", StringComparison.OrdinalIgnoreCase) && - !extension.Equals(".exe", StringComparison.OrdinalIgnoreCase) && - !extension.Equals(".winmd", StringComparison.OrdinalIgnoreCase) && - !asset.Path.Equals(assemblyPath, StringComparison.OrdinalIgnoreCase) && - //The prefix should match exactly (case sensitive), as file names are case sensitive on certain OSes. - //E.g. for lib/net472/A.B.C.dll and lib/net472/a.b.c.xml, if we generate related property '.xml', the related file path is not predicatble on case sensitive OSes. - asset.Path.StartsWith(assemblyPrefix, StringComparison.Ordinal)) - { - if (relatedFileExtensionList is null) - { - relatedFileExtensionList = new List(); - } - relatedFileExtensionList.Add(asset.Path.Substring(assemblyPrefix.Length - 1)); - } - } - } - - // If no related files found. - if (relatedFileExtensionList is null || !relatedFileExtensionList.Any()) - { - _assemblyRelatedExtensions.TryAdd(assemblyPrefix, null); - return null; - } - else - { - relatedFileExtensionList.Sort(); - string relatedFileExtensionsProperty = string.Join(";", relatedFileExtensionList); - _assemblyRelatedExtensions.TryAdd(assemblyPrefix, relatedFileExtensionsProperty); - return relatedFileExtensionsProperty; - } - } - /// /// False if the path would not match any patterns. /// diff --git a/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/DotnetRestoreTests.cs b/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/DotnetRestoreTests.cs index b006077d631..09a69897fc0 100644 --- a/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/DotnetRestoreTests.cs +++ b/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/DotnetRestoreTests.cs @@ -1752,7 +1752,7 @@ public async Task DotnetRestore_WithDuplicatePackageVersion_WarnsWithNU1506() await SimpleTestPackageUtility.CreateFolderFeedV3Async(pathContext.PackageSource, packageContext); var directoryPackagesPropsContent = - @" + @" @@ -2307,7 +2307,7 @@ public async Task DotnetRestore_WithDuplicatePackageVersion_WithTreatWarningsAsE await SimpleTestPackageUtility.CreateFolderFeedV3Async(pathContext.PackageSource, packageContext); var directoryPackagesPropsContent = - @" + @" @@ -2393,96 +2393,6 @@ public async Task DotnetRestore_WithDuplicatePackageReference_RespectsContinueOn } } - [Fact] - public async Task WhenPackageReferrenceHasRelatedFiles_RelatedPropertyIsApplied_Success() - { - using var pathContext = _msbuildFixture.CreateSimpleTestPathContext(); - - // Set up solution, and project - // projectA -> projectB -> packageX -> packageY - var solution = new SimpleTestSolutionContext(pathContext.SolutionRoot); - var framework = "net5.0"; - var projectA = SimpleTestProjectContext.CreateNETCore( - "projectA", - pathContext.SolutionRoot, - framework); - - var projectB = SimpleTestProjectContext.CreateNETCore( - "projectB", - pathContext.SolutionRoot, - framework); - - projectB.Properties.Add("Configuration", "Debug"); - - projectA.AddProjectToAllFrameworks(projectB); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - packageX.AddFile($"lib/net5.0/X.dll"); - packageX.AddFile($"lib/net5.0/X.xml"); - - var packageY = new SimpleTestPackageContext("packageY", "1.0.0"); - packageY.Files.Clear(); - // Compile - packageY.AddFile("ref/net5.0/Y.dll"); - packageY.AddFile("ref/net5.0/Y.xml"); - // Runtime - packageY.AddFile("lib/net5.0/Y.dll"); - packageY.AddFile("lib/net5.0/Y.pdb"); - packageY.AddFile("lib/net5.0/Y.xml"); - // Embed - packageY.AddFile("embed/net5.0/Y.dll"); - packageY.AddFile("embed/net5.0/Y.pdb"); - - packageX.Dependencies.Add(packageY); - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX, packageY); - projectB.AddPackageToAllFrameworks(packageX); - - solution.Projects.Add(projectA); - solution.Projects.Add(projectB); - solution.Create(pathContext.SolutionRoot); - - await SimpleTestPackageUtility.CreateFolderFeedV3Async( - pathContext.PackageSource, - PackageSaveMode.Defaultv3, - packageX, - packageY); - - //Act - var result = _msbuildFixture.RunDotnet(pathContext.WorkingDirectory, $"restore {projectA.ProjectPath} -v n", ignoreExitCode: true); - - // Assert - result.Success.Should().BeTrue(because: result.AllOutput); - - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - var targets = assetsFile.GetTarget(framework, null); - - // packageX (top-level package reference): "related" property is applied correctly for Compile & Runtime - var packageXLib = targets.Libraries.Single(x => x.Name.Equals("packageX")); - var packageXCompile = packageXLib.CompileTimeAssemblies; - AssertRelatedProperty(packageXCompile, $"lib/net5.0/X.dll", ".xml"); - var packageXRuntime = packageXLib.RuntimeAssemblies; - AssertRelatedProperty(packageXRuntime, $"lib/net5.0/X.dll", ".xml"); - - // packageY (transitive package reference): "related" property is applied for Compile, Runtime and Embeded. - var packageYLib = targets.Libraries.Single(x => x.Name.Equals("packageY")); - var packageYCompile = packageYLib.CompileTimeAssemblies; - AssertRelatedProperty(packageYCompile, $"ref/net5.0/Y.dll", ".xml"); - var packageYRuntime = packageYLib.RuntimeAssemblies; - AssertRelatedProperty(packageYRuntime, $"lib/net5.0/Y.dll", ".pdb;.xml"); - var packageYEmbed = packageYLib.EmbedAssemblies; - AssertRelatedProperty(packageYEmbed, $"embed/net5.0/Y.dll", ".pdb"); - - // projectB (project reference): "related" property is NOT applied for Compile or Runtime. - var projectBLib = targets.Libraries.Single(x => x.Name.Equals("projectB")); - var projectBCompile = projectBLib.CompileTimeAssemblies; - AssertRelatedProperty(projectBCompile, $"bin/placeholder/projectB.dll", null); - var projectBRuntime = projectBLib.RuntimeAssemblies; - AssertRelatedProperty(projectBRuntime, $"bin/placeholder/projectB.dll", null); - - } - private static SimpleTestPackageContext CreateNetstandardCompatiblePackage(string id, string version) { var pkgX = new SimpleTestPackageContext(id, version); @@ -2693,18 +2603,5 @@ public async Task DotnetRestore_WithMultiTargettingProject_WhenTargetFrameworkIs var allTargets = File.ReadAllText(targetsFilePath); allTargets.Should().Contain(condition); } - - private void AssertRelatedProperty(IList items, string path, string related) - { - var item = items.Single(i => i.Path.Equals(path)); - if (related == null) - { - Assert.False(item.Properties.ContainsKey("related")); - } - else - { - Assert.Equal(related, item.Properties["related"]); - } - } } } diff --git a/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV1.json b/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV1.json index de47fd8f49a..e3d75b49f47 100644 --- a/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV1.json +++ b/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV1.json @@ -22,9 +22,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -238,9 +236,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -252,9 +248,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -268,9 +262,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -285,9 +277,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -312,9 +302,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -332,14 +320,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -352,9 +336,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -371,9 +353,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -384,9 +364,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -407,9 +385,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -423,9 +399,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -444,9 +418,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -454,9 +426,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -473,9 +443,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -492,9 +460,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -508,9 +474,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -536,9 +500,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -566,9 +528,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -585,9 +545,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -605,9 +563,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -628,9 +584,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -646,9 +600,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -673,9 +625,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -693,9 +643,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -720,9 +668,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -733,9 +679,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -754,9 +698,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -773,9 +715,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -790,9 +730,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -815,9 +753,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -843,9 +779,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -862,9 +796,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -888,9 +820,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -902,9 +832,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -917,9 +845,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -931,9 +857,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -953,9 +877,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -967,9 +889,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -983,9 +903,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -1027,9 +945,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -1165,9 +1081,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -1186,9 +1100,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -1206,9 +1118,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -1231,9 +1141,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -1263,14 +1171,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -1279,9 +1183,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -1305,9 +1207,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -1326,9 +1226,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -1345,9 +1243,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -1364,9 +1260,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -1383,9 +1277,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -1405,9 +1297,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -1421,9 +1311,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -1443,9 +1331,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -1456,9 +1342,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -1476,9 +1360,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -1490,9 +1372,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -1518,9 +1398,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -1541,9 +1419,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -1561,9 +1437,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -1574,9 +1448,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -1588,9 +1460,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -1602,9 +1472,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -1616,9 +1484,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -1630,9 +1496,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -1644,9 +1508,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -1657,9 +1519,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -1686,9 +1546,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -1700,9 +1558,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -1724,9 +1580,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -1738,9 +1592,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -1762,9 +1614,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -1775,9 +1625,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -1804,14 +1652,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -1826,9 +1670,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -1836,9 +1678,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -1868,9 +1708,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -1891,9 +1729,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -1913,9 +1749,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -1941,9 +1775,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -1977,9 +1809,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -2186,9 +2016,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -2200,9 +2028,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -2216,9 +2042,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -2233,9 +2057,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -2254,9 +2076,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -2274,14 +2094,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -2294,9 +2110,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -2313,9 +2127,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -2326,9 +2138,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -2349,9 +2159,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -2365,9 +2173,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -2386,9 +2192,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -2396,9 +2200,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -2409,9 +2211,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -2422,9 +2222,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -2432,9 +2230,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -2454,9 +2250,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -2480,9 +2274,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -2493,9 +2285,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -2507,9 +2297,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -2524,9 +2312,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -2542,9 +2328,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -2564,9 +2348,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -2589,9 +2371,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -2616,9 +2396,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -2629,9 +2407,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -2650,9 +2426,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -2669,9 +2443,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -2686,9 +2458,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -2713,9 +2483,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -2735,9 +2503,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -2754,9 +2520,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -2780,9 +2544,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -2794,9 +2556,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -2809,9 +2569,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -2823,9 +2581,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -2845,9 +2601,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -2859,9 +2613,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -2875,9 +2627,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -2919,9 +2669,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -3047,9 +2795,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -3062,9 +2808,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -3084,9 +2828,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -3101,9 +2843,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -3116,9 +2856,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -3132,9 +2870,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -3151,9 +2887,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -3177,14 +2911,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -3193,9 +2923,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -3213,9 +2941,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -3228,9 +2954,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -3241,9 +2965,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -3254,9 +2976,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -3267,9 +2987,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -3283,9 +3001,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -3293,9 +3009,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -3309,9 +3023,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -3322,9 +3034,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -3336,9 +3046,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -3350,9 +3058,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -3372,9 +3078,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -3389,9 +3093,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -3409,9 +3111,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -3422,9 +3122,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -3436,9 +3134,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -3450,9 +3146,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -3464,9 +3158,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -3478,9 +3170,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -3492,9 +3182,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -3505,9 +3193,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -3528,9 +3214,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -3542,9 +3226,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -3560,9 +3242,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -3574,9 +3254,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -3592,9 +3270,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -3605,9 +3281,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -3628,14 +3302,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -3650,9 +3320,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -3660,9 +3328,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -3686,9 +3352,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -3709,9 +3373,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -3731,9 +3393,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -3761,9 +3421,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -3791,9 +3449,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -3986,9 +3642,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -4000,9 +3654,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -4016,9 +3668,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -4033,9 +3683,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -4054,9 +3702,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -4074,14 +3720,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -4094,9 +3736,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -4113,9 +3753,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -4126,9 +3764,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -4149,9 +3785,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -4165,9 +3799,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -4186,9 +3818,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -4196,9 +3826,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -4209,9 +3837,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -4222,9 +3848,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -4232,9 +3856,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -4254,9 +3876,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -4278,9 +3898,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -4291,9 +3909,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -4305,9 +3921,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -4322,9 +3936,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -4340,9 +3952,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -4362,9 +3972,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -4387,9 +3995,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -4414,9 +4020,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -4427,9 +4031,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -4448,9 +4050,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -4467,9 +4067,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -4484,9 +4082,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -4509,9 +4105,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -4531,9 +4125,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -4550,9 +4142,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -4576,9 +4166,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -4590,9 +4178,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -4605,9 +4191,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -4619,9 +4203,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -4641,9 +4223,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -4655,9 +4235,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -4671,9 +4249,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -4715,9 +4291,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -4841,9 +4415,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -4856,9 +4428,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -4876,9 +4446,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -4893,9 +4461,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -4908,9 +4474,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -4927,9 +4491,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -4953,14 +4515,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -4969,9 +4527,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -4989,9 +4545,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -5004,9 +4558,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -5017,9 +4569,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -5030,9 +4580,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -5043,9 +4591,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -5059,9 +4605,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -5069,9 +4613,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -5085,9 +4627,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -5098,9 +4638,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -5112,9 +4650,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -5126,9 +4662,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -5148,9 +4682,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -5165,9 +4697,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -5185,9 +4715,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -5198,9 +4726,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -5212,9 +4738,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -5226,9 +4750,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -5240,9 +4762,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -5254,9 +4774,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -5268,9 +4786,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -5281,9 +4797,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -5304,9 +4818,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -5318,9 +4830,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -5336,9 +4846,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -5350,9 +4858,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -5368,9 +4874,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -5381,9 +4885,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -5404,14 +4906,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -5426,9 +4924,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -5436,9 +4932,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -5462,9 +4956,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -5485,9 +4977,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -5507,9 +4997,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -5537,9 +5025,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -5567,9 +5053,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -5782,9 +5266,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -5796,9 +5278,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -5812,9 +5292,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -5829,9 +5307,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -5850,9 +5326,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -5870,14 +5344,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -5890,9 +5360,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -5909,9 +5377,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -5922,9 +5388,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -5945,9 +5409,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -5961,9 +5423,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -5982,9 +5442,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -5992,9 +5450,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -6005,9 +5461,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -6018,9 +5472,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -6028,9 +5480,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -6050,9 +5500,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -6076,9 +5524,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -6089,9 +5535,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -6103,9 +5547,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -6120,9 +5562,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -6138,9 +5578,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -6160,9 +5598,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -6185,9 +5621,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -6212,9 +5646,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -6225,9 +5657,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -6246,9 +5676,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -6265,9 +5693,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -6282,9 +5708,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -6309,9 +5733,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -6331,9 +5753,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -6350,9 +5770,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -6376,9 +5794,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -6390,9 +5806,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -6405,9 +5819,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -6419,9 +5831,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -6441,9 +5851,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -6455,9 +5863,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -6471,9 +5877,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -6515,9 +5919,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -6643,9 +6045,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -6658,9 +6058,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -6680,9 +6078,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -6697,9 +6093,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -6712,9 +6106,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -6728,9 +6120,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -6747,9 +6137,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -6773,14 +6161,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -6789,9 +6173,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -6809,9 +6191,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -6824,9 +6204,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -6837,9 +6215,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -6850,9 +6226,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -6863,9 +6237,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -6879,9 +6251,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -6889,9 +6259,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -6905,9 +6273,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -6918,9 +6284,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -6932,9 +6296,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -6946,9 +6308,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -6968,9 +6328,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -6985,9 +6343,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -7005,9 +6361,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -7018,9 +6372,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -7032,9 +6384,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -7046,9 +6396,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -7060,9 +6408,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -7074,9 +6420,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -7088,9 +6432,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -7101,9 +6443,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -7124,9 +6464,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -7138,9 +6476,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -7156,9 +6492,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -7170,9 +6504,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -7188,9 +6520,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -7201,9 +6531,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -7224,14 +6552,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -7246,9 +6570,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -7256,9 +6578,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -7282,9 +6602,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -7305,9 +6623,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -7327,9 +6643,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -7357,9 +6671,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -7387,9 +6699,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -7582,9 +6892,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -7596,9 +6904,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -7612,9 +6918,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -7629,9 +6933,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -7650,9 +6952,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -7670,14 +6970,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -7690,9 +6986,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -7709,9 +7003,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -7722,9 +7014,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -7745,9 +7035,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -7761,9 +7049,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -7782,9 +7068,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -7792,9 +7076,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -7805,9 +7087,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -7818,9 +7098,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -7828,9 +7106,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -7850,9 +7126,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -7874,9 +7148,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -7887,9 +7159,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -7901,9 +7171,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -7918,9 +7186,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -7936,9 +7202,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -7958,9 +7222,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -7983,9 +7245,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -8010,9 +7270,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -8023,9 +7281,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -8044,9 +7300,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -8063,9 +7317,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -8080,9 +7332,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -8105,9 +7355,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -8127,9 +7375,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -8146,9 +7392,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -8172,9 +7416,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -8186,9 +7428,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -8201,9 +7441,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -8215,9 +7453,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -8237,9 +7473,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -8251,9 +7485,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -8267,9 +7499,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -8311,9 +7541,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -8437,9 +7665,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -8452,9 +7678,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -8472,9 +7696,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -8489,9 +7711,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -8504,9 +7724,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -8523,9 +7741,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -8549,14 +7765,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -8565,9 +7777,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -8585,9 +7795,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -8600,9 +7808,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -8613,9 +7819,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -8626,9 +7830,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -8639,9 +7841,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -8655,9 +7855,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -8665,9 +7863,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -8681,9 +7877,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -8694,9 +7888,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -8708,9 +7900,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -8722,9 +7912,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -8744,9 +7932,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -8761,9 +7947,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -8781,9 +7965,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -8794,9 +7976,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -8808,9 +7988,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -8822,9 +8000,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -8836,9 +8012,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -8850,9 +8024,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -8864,9 +8036,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -8877,9 +8047,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -8900,9 +8068,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -8914,9 +8080,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -8932,9 +8096,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -8946,9 +8108,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -8964,9 +8124,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -8977,9 +8135,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -9000,14 +8156,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -9022,9 +8174,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -9032,9 +8182,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -9058,9 +8206,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -9081,9 +8227,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -9103,9 +8247,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -9133,9 +8275,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -9163,9 +8303,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -9378,9 +8516,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -9392,9 +8528,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -9408,9 +8542,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -9425,9 +8557,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -9446,9 +8576,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -9466,14 +8594,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -9486,9 +8610,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -9505,9 +8627,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -9518,9 +8638,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -9541,9 +8659,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -9557,9 +8673,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -9578,9 +8692,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -9588,9 +8700,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -9601,9 +8711,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -9614,9 +8722,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -9624,9 +8730,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -9646,9 +8750,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -9672,9 +8774,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -9685,9 +8785,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -9699,9 +8797,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -9716,9 +8812,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -9734,9 +8828,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -9756,9 +8848,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -9781,9 +8871,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -9808,9 +8896,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -9821,9 +8907,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -9842,9 +8926,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -9861,9 +8943,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -9878,9 +8958,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -9905,9 +8983,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -9927,9 +9003,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -9946,9 +9020,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -9972,9 +9044,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -9986,9 +9056,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -10001,9 +9069,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -10015,9 +9081,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -10037,9 +9101,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -10051,9 +9113,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -10067,9 +9127,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -10111,9 +9169,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -10239,9 +9295,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -10254,9 +9308,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -10276,9 +9328,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -10293,9 +9343,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -10308,9 +9356,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -10324,9 +9370,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -10343,9 +9387,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -10369,14 +9411,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -10385,9 +9423,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -10405,9 +9441,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -10420,9 +9454,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -10433,9 +9465,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -10446,9 +9476,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -10459,9 +9487,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -10475,9 +9501,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -10485,9 +9509,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -10501,9 +9523,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -10514,9 +9534,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -10528,9 +9546,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -10542,9 +9558,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -10564,9 +9578,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -10581,9 +9593,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -10601,9 +9611,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -10614,9 +9622,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -10628,9 +9634,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -10642,9 +9646,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -10656,9 +9658,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -10670,9 +9670,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -10684,9 +9682,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -10697,9 +9693,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -10720,9 +9714,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -10734,9 +9726,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -10752,9 +9742,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -10766,9 +9754,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -10784,9 +9770,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -10797,9 +9781,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -10820,14 +9802,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -10842,9 +9820,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -10852,9 +9828,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -10878,9 +9852,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -10901,9 +9873,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -10923,9 +9893,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -10953,9 +9921,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -10983,9 +9949,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -11178,9 +10142,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -11192,9 +10154,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -11208,9 +10168,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -11225,9 +10183,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -11246,9 +10202,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -11266,14 +10220,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -11286,9 +10236,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -11305,9 +10253,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -11318,9 +10264,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -11341,9 +10285,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -11357,9 +10299,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -11378,9 +10318,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -11388,9 +10326,7 @@ }, "System.Diagnostics.Contracts/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -11401,9 +10337,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -11414,9 +10348,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -11424,9 +10356,7 @@ }, "System.Diagnostics.Tools/4.0.0": { "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -11446,9 +10376,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -11470,9 +10398,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -11483,9 +10409,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -11497,9 +10421,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -11514,9 +10436,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -11532,9 +10452,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -11554,9 +10472,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -11579,9 +10495,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -11606,9 +10520,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -11619,9 +10531,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -11640,9 +10550,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -11659,9 +10567,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -11676,9 +10582,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -11701,9 +10605,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -11723,9 +10625,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -11742,9 +10642,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -11768,9 +10666,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -11782,9 +10678,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -11797,9 +10691,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -11811,9 +10703,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -11833,9 +10723,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -11847,9 +10735,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -11863,9 +10749,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -11907,9 +10791,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -12033,9 +10915,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -12048,9 +10928,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -12068,9 +10946,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -12085,9 +10961,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -12100,9 +10974,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -12119,9 +10991,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -12145,14 +11015,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -12161,9 +11027,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -12181,9 +11045,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -12196,9 +11058,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -12209,9 +11069,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -12222,9 +11080,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -12235,9 +11091,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -12251,9 +11105,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -12261,9 +11113,7 @@ }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -12277,9 +11127,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -12290,9 +11138,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -12304,9 +11150,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -12318,9 +11162,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -12340,9 +11182,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -12357,9 +11197,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -12377,9 +11215,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -12390,9 +11226,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -12404,9 +11238,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -12418,9 +11250,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -12432,9 +11262,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -12446,9 +11274,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -12460,9 +11286,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -12473,9 +11297,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -12496,9 +11318,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -12510,9 +11330,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -12528,9 +11346,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -12542,9 +11358,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -12560,9 +11374,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -12573,9 +11385,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -12596,14 +11406,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -12618,9 +11424,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -12628,9 +11432,7 @@ }, "System.Threading.Timer/4.0.0": { "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -12654,9 +11456,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -12677,9 +11477,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -12699,9 +11497,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -12729,9 +11525,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -16201,4 +14995,4 @@ ], "UAP,Version=v10.0": [] } -} +} \ No newline at end of file diff --git a/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV2.json b/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV2.json index 0f92fbc3012..cc8b6ed1400 100644 --- a/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV2.json +++ b/test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV2.json @@ -23,9 +23,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -250,9 +248,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -265,9 +261,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -282,9 +276,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -300,9 +292,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -328,9 +318,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -349,14 +337,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -370,9 +354,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -390,9 +372,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -404,9 +384,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -428,9 +406,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -445,9 +421,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -467,9 +441,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -478,9 +450,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -498,9 +468,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -518,9 +486,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -535,9 +501,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -564,9 +528,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -595,9 +557,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -615,9 +575,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -636,9 +594,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -660,9 +616,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -679,9 +633,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -707,9 +659,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -728,9 +678,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -756,9 +704,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -770,9 +716,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -792,9 +736,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -812,9 +754,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -830,9 +770,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -856,9 +794,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -885,9 +821,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -905,9 +839,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -932,9 +864,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -947,9 +877,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -963,9 +891,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -978,9 +904,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -1001,9 +925,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -1016,9 +938,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -1033,9 +953,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -1080,9 +998,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -1223,9 +1139,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -1245,9 +1159,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -1266,9 +1178,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -1292,9 +1202,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -1325,14 +1233,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -1342,9 +1246,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -1369,9 +1271,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -1391,9 +1291,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -1411,9 +1309,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -1431,9 +1327,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -1451,9 +1345,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -1474,9 +1366,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -1491,9 +1381,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -1514,9 +1402,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -1528,9 +1414,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -1549,9 +1433,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -1564,9 +1446,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -1593,9 +1473,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -1617,9 +1495,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -1638,9 +1514,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -1652,9 +1526,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -1667,9 +1539,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -1682,9 +1552,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -1697,9 +1565,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -1712,9 +1578,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -1727,9 +1591,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -1741,9 +1603,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -1771,9 +1631,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -1786,9 +1644,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -1811,9 +1667,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -1826,9 +1680,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -1851,9 +1703,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -1865,9 +1715,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -1895,14 +1743,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -1918,9 +1762,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -1929,9 +1771,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -1962,9 +1802,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -1986,9 +1824,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -2009,9 +1845,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -2038,9 +1872,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -2075,9 +1907,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -2295,9 +2125,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -2310,9 +2138,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -2327,9 +2153,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -2345,9 +2169,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -2367,9 +2189,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -2388,14 +2208,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -2409,9 +2225,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -2429,9 +2243,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -2443,9 +2255,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -2467,9 +2277,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -2484,9 +2292,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -2506,9 +2312,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -2517,9 +2321,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -2531,9 +2333,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -2545,9 +2345,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -2556,9 +2354,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -2579,9 +2375,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -2606,9 +2400,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -2620,9 +2412,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -2635,9 +2425,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -2653,9 +2441,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -2672,9 +2458,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -2695,9 +2479,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -2722,9 +2504,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -2750,9 +2530,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -2764,9 +2542,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -2786,9 +2562,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -2806,9 +2580,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -2824,9 +2596,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -2852,9 +2622,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -2875,9 +2643,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -2895,9 +2661,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -2922,9 +2686,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -2937,9 +2699,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -2953,9 +2713,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -2968,9 +2726,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -2991,9 +2747,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -3006,9 +2760,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -3023,9 +2775,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -3070,9 +2820,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -3203,9 +2951,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -3219,9 +2965,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -3242,9 +2986,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -3260,9 +3002,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -3276,9 +3016,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -3293,9 +3031,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -3313,9 +3049,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -3340,14 +3074,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -3357,9 +3087,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -3378,9 +3106,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -3394,9 +3120,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -3408,9 +3132,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -3422,9 +3144,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -3436,9 +3156,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -3453,9 +3171,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -3464,9 +3180,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -3481,9 +3195,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -3495,9 +3207,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -3510,9 +3220,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -3525,9 +3233,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -3548,9 +3254,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -3566,9 +3270,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -3587,9 +3289,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -3601,9 +3301,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -3616,9 +3314,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -3631,9 +3327,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -3646,9 +3340,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -3661,9 +3353,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -3676,9 +3366,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -3690,9 +3378,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -3714,9 +3400,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -3729,9 +3413,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -3748,9 +3430,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -3763,9 +3443,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -3782,9 +3460,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -3796,9 +3472,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -3820,14 +3494,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -3843,9 +3513,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -3854,9 +3522,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -3881,9 +3547,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -3905,9 +3569,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -3928,9 +3590,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -3959,9 +3619,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -3990,9 +3648,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -4196,9 +3852,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -4211,9 +3865,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -4228,9 +3880,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -4246,9 +3896,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -4268,9 +3916,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -4289,14 +3935,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -4310,9 +3952,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -4330,9 +3970,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -4344,9 +3982,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -4368,9 +4004,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -4385,9 +4019,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -4407,9 +4039,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -4418,9 +4048,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -4432,9 +4060,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -4446,9 +4072,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -4457,9 +4081,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -4480,9 +4102,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -4505,9 +4125,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -4519,9 +4137,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -4534,9 +4150,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -4552,9 +4166,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -4571,9 +4183,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -4594,9 +4204,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -4621,9 +4229,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -4649,9 +4255,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -4663,9 +4267,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -4685,9 +4287,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -4705,9 +4305,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -4723,9 +4321,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -4749,9 +4345,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -4772,9 +4366,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -4792,9 +4384,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -4819,9 +4409,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -4834,9 +4422,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -4850,9 +4436,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -4865,9 +4449,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -4888,9 +4470,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -4903,9 +4483,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -4920,9 +4498,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -4967,9 +4543,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -5098,9 +4672,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -5114,9 +4686,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -5135,9 +4705,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -5153,9 +4721,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -5169,9 +4735,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -5189,9 +4753,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -5216,14 +4778,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -5233,9 +4791,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -5254,9 +4810,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -5270,9 +4824,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -5284,9 +4836,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -5298,9 +4848,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -5312,9 +4860,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -5329,9 +4875,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -5340,9 +4884,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -5357,9 +4899,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -5371,9 +4911,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -5386,9 +4924,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -5401,9 +4937,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -5424,9 +4958,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -5442,9 +4974,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -5463,9 +4993,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -5477,9 +5005,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -5492,9 +5018,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -5507,9 +5031,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -5522,9 +5044,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -5537,9 +5057,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -5552,9 +5070,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -5566,9 +5082,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -5590,9 +5104,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -5605,9 +5117,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -5624,9 +5134,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -5639,9 +5147,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -5658,9 +5164,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -5672,9 +5176,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -5696,14 +5198,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -5719,9 +5217,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -5730,9 +5226,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -5757,9 +5251,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -5781,9 +5273,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -5804,9 +5294,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -5835,9 +5323,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -5866,9 +5352,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -6093,9 +5577,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -6108,9 +5590,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -6125,9 +5605,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -6143,9 +5621,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -6165,9 +5641,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -6186,14 +5660,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -6207,9 +5677,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -6227,9 +5695,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -6241,9 +5707,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -6265,9 +5729,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -6282,9 +5744,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -6304,9 +5764,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -6315,9 +5773,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -6329,9 +5785,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -6343,9 +5797,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -6354,9 +5806,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -6377,9 +5827,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -6404,9 +5852,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -6418,9 +5864,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -6433,9 +5877,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -6451,9 +5893,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -6470,9 +5910,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -6493,9 +5931,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -6520,9 +5956,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -6548,9 +5982,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -6562,9 +5994,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -6584,9 +6014,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -6604,9 +6032,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -6622,9 +6048,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -6650,9 +6074,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -6673,9 +6095,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -6693,9 +6113,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -6720,9 +6138,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -6735,9 +6151,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -6751,9 +6165,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -6766,9 +6178,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -6789,9 +6199,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -6804,9 +6212,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -6821,9 +6227,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -6868,9 +6272,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -7001,9 +6403,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -7017,9 +6417,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -7040,9 +6438,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -7058,9 +6454,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -7074,9 +6468,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -7091,9 +6483,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -7111,9 +6501,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -7138,14 +6526,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -7155,9 +6539,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -7176,9 +6558,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -7192,9 +6572,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -7206,9 +6584,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -7220,9 +6596,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -7234,9 +6608,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -7251,9 +6623,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -7262,9 +6632,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -7279,9 +6647,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -7293,9 +6659,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -7308,9 +6672,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -7323,9 +6685,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -7346,9 +6706,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -7364,9 +6722,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -7385,9 +6741,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -7399,9 +6753,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -7414,9 +6766,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -7429,9 +6779,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -7444,9 +6792,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -7459,9 +6805,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -7474,9 +6818,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -7488,9 +6830,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -7512,9 +6852,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -7527,9 +6865,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -7546,9 +6882,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -7561,9 +6895,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -7580,9 +6912,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -7594,9 +6924,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -7618,14 +6946,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -7641,9 +6965,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -7652,9 +6974,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -7679,9 +6999,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -7703,9 +7021,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -7726,9 +7042,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -7757,9 +7071,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -7788,9 +7100,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -7994,9 +7304,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -8009,9 +7317,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -8026,9 +7332,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -8044,9 +7348,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -8066,9 +7368,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -8087,14 +7387,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -8108,9 +7404,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -8128,9 +7422,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -8142,9 +7434,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -8166,9 +7456,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -8183,9 +7471,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -8205,9 +7491,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -8216,9 +7500,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -8230,9 +7512,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -8244,9 +7524,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -8255,9 +7533,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -8278,9 +7554,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -8303,9 +7577,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -8317,9 +7589,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -8332,9 +7602,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -8350,9 +7618,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -8369,9 +7635,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -8392,9 +7656,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -8419,9 +7681,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -8447,9 +7707,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -8461,9 +7719,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -8483,9 +7739,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -8503,9 +7757,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -8521,9 +7773,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -8547,9 +7797,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -8570,9 +7818,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -8590,9 +7836,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -8617,9 +7861,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -8632,9 +7874,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -8648,9 +7888,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -8663,9 +7901,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -8686,9 +7922,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -8701,9 +7935,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -8718,9 +7950,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -8765,9 +7995,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -8896,9 +8124,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -8912,9 +8138,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -8933,9 +8157,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -8951,9 +8173,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -8967,9 +8187,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -8987,9 +8205,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -9014,14 +8230,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -9031,9 +8243,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -9052,9 +8262,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -9068,9 +8276,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -9082,9 +8288,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -9096,9 +8300,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -9110,9 +8312,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -9127,9 +8327,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -9138,9 +8336,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -9155,9 +8351,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -9169,9 +8363,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -9184,9 +8376,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -9199,9 +8389,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -9222,9 +8410,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -9240,9 +8426,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -9261,9 +8445,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -9275,9 +8457,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -9290,9 +8470,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -9305,9 +8483,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -9320,9 +8496,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -9335,9 +8509,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -9350,9 +8522,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -9364,9 +8534,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -9388,9 +8556,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -9403,9 +8569,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -9422,9 +8586,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -9437,9 +8599,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -9456,9 +8616,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -9470,9 +8628,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -9494,14 +8650,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -9517,9 +8669,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -9528,9 +8678,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -9555,9 +8703,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -9579,9 +8725,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -9602,9 +8746,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -9633,9 +8775,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -9664,9 +8804,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -9891,9 +9029,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -9906,9 +9042,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -9923,9 +9057,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -9941,9 +9073,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "lib/netcore50/System.Collections.dll": {} @@ -9963,9 +9093,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -9984,14 +9112,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -10005,9 +9129,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -10025,9 +9147,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -10039,9 +9159,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -10063,9 +9181,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -10080,9 +9196,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -10102,9 +9216,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -10113,9 +9225,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -10127,9 +9237,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -10141,9 +9249,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -10152,9 +9258,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -10175,9 +9279,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -10202,9 +9304,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -10216,9 +9316,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.dll": {} @@ -10231,9 +9329,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "lib/netcore50/System.Globalization.Calendars.dll": {} @@ -10249,9 +9345,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -10268,9 +9362,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "lib/netcore50/System.IO.dll": {} @@ -10291,9 +9383,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -10318,9 +9408,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -10346,9 +9434,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -10360,9 +9446,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -10382,9 +9466,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -10402,9 +9484,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -10420,9 +9500,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -10448,9 +9526,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Expressions.dll": {} @@ -10471,9 +9547,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -10491,9 +9565,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -10518,9 +9590,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -10533,9 +9603,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -10549,9 +9617,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -10564,9 +9630,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -10587,9 +9651,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -10602,9 +9664,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -10619,9 +9679,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -10666,9 +9724,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -10799,9 +9855,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.dll": {} @@ -10815,9 +9869,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -10838,9 +9890,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -10856,9 +9906,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -10872,9 +9920,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -10889,9 +9935,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} @@ -10909,9 +9953,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Extensions.dll": {} @@ -10936,14 +9978,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -10953,9 +9991,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Primitives.dll": {} @@ -10974,9 +10010,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -10990,9 +10024,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -11004,9 +10036,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.dll": {} @@ -11018,9 +10048,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Extensions.dll": {} @@ -11032,9 +10060,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Handles.dll": {} @@ -11049,9 +10075,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -11060,9 +10084,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -11077,9 +10099,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -11091,9 +10111,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -11106,9 +10124,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -11121,9 +10137,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -11144,9 +10158,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -11162,9 +10174,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -11183,9 +10193,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -11197,9 +10205,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -11212,9 +10218,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -11227,9 +10231,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -11242,9 +10244,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -11257,9 +10257,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -11272,9 +10270,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -11286,9 +10282,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.dll": {} @@ -11310,9 +10304,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -11325,9 +10317,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -11344,9 +10334,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -11359,9 +10347,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "lib/netcore50/System.Threading.dll": {} @@ -11378,9 +10364,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -11392,9 +10376,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.dll": {} @@ -11416,14 +10398,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -11439,9 +10417,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -11450,9 +10426,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Timer.dll": {} @@ -11477,9 +10451,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -11501,9 +10473,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -11524,9 +10494,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -11555,9 +10523,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "lib/netcore50/System.Xml.XmlSerializer.dll": {} @@ -11586,9 +10552,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.CSharp.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.CSharp.dll": {} }, "runtime": { "lib/netcore50/Microsoft.CSharp.dll": {} @@ -11792,9 +10756,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": { - "related": ".xml" - } + "ref/netcore50/Microsoft.VisualBasic.dll": {} }, "runtime": { "lib/netcore50/Microsoft.VisualBasic.dll": {} @@ -11807,9 +10769,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} }, "runtime": { "lib/dotnet/Microsoft.Win32.Primitives.dll": {} @@ -11824,9 +10784,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.AppContext.dll": { - "related": ".xml" - } + "ref/dotnet/System.AppContext.dll": {} }, "runtime": { "lib/netcore50/System.AppContext.dll": {} @@ -11842,9 +10800,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Collections.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} @@ -11864,9 +10820,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Concurrent.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Concurrent.dll": {} @@ -11885,14 +10839,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} }, "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": { - "related": ".xml" - } + "lib/dotnet/System.Collections.Immutable.dll": {} } }, "System.Collections.NonGeneric/4.0.0": { @@ -11906,9 +10856,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.NonGeneric.dll": {} }, "runtime": { "lib/dotnet/System.Collections.NonGeneric.dll": {} @@ -11926,9 +10874,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Collections.Specialized.dll": { - "related": ".xml" - } + "ref/dotnet/System.Collections.Specialized.dll": {} }, "runtime": { "lib/dotnet/System.Collections.Specialized.dll": {} @@ -11940,9 +10886,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ComponentModel.dll": { - "related": ".xml" - } + "ref/netcore50/System.ComponentModel.dll": {} }, "runtime": { "lib/netcore50/System.ComponentModel.dll": {} @@ -11964,9 +10908,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.Annotations.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.Annotations.dll": {} @@ -11981,9 +10923,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": { - "related": ".xml" - } + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} }, "runtime": { "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} @@ -12003,9 +10943,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Data.Common.dll": { - "related": ".xml" - } + "ref/dotnet/System.Data.Common.dll": {} }, "runtime": { "lib/dotnet/System.Data.Common.dll": {} @@ -12014,9 +10952,7 @@ "System.Diagnostics.Contracts/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Contracts.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} @@ -12028,9 +10964,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Debug.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} @@ -12042,9 +10976,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} @@ -12053,9 +10985,7 @@ "System.Diagnostics.Tools/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": { - "related": ".xml" - } + "ref/netcore50/System.Diagnostics.Tools.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} @@ -12076,9 +11006,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } + "ref/dotnet/System.Diagnostics.Tracing.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} @@ -12101,9 +11029,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Dynamic.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} @@ -12115,9 +11041,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} @@ -12130,9 +11054,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Calendars.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} @@ -12148,9 +11070,7 @@ "System.Runtime.InteropServices": "4.0.20" }, "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Globalization.Extensions.dll": {} }, "runtime": { "lib/dotnet/System.Globalization.Extensions.dll": {} @@ -12167,9 +11087,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.IO.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} @@ -12190,9 +11108,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/netcore50/System.IO.Compression.dll": { - "related": ".xml" - } + "ref/netcore50/System.IO.Compression.dll": {} }, "runtime": { "lib/netcore50/System.IO.Compression.dll": {} @@ -12217,9 +11133,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.Compression.ZipFile.dll": {} }, "runtime": { "lib/dotnet/System.IO.Compression.ZipFile.dll": {} @@ -12245,9 +11159,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.FileSystem.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.dll": {} }, "runtime": { "lib/netcore50/System.IO.FileSystem.dll": {} @@ -12259,9 +11171,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} @@ -12281,9 +11191,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.IsolatedStorage.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.IsolatedStorage.dll": {} }, "runtime": { "lib/netcore50/System.IO.IsolatedStorage.dll": {} @@ -12301,9 +11209,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": { - "related": ".xml" - } + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} }, "runtime": { "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} @@ -12319,9 +11225,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.dll": {} }, "runtime": { "lib/netcore50/System.Linq.dll": {} @@ -12345,9 +11249,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/dotnet/System.Linq.Expressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Linq.Expressions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} @@ -12368,9 +11270,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Linq.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Parallel.dll": {} @@ -12388,9 +11288,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Linq.Queryable.dll": { - "related": ".xml" - } + "ref/netcore50/System.Linq.Queryable.dll": {} }, "runtime": { "lib/netcore50/System.Linq.Queryable.dll": {} @@ -12415,9 +11313,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Net.Http.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.dll": {} @@ -12430,9 +11326,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Net.Http.Rtc.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.Http.Rtc.dll": {} }, "runtime": { "lib/netcore50/System.Net.Http.Rtc.dll": {} @@ -12446,9 +11340,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": { - "related": ".xml" - } + "ref/netcore50/System.Net.NetworkInformation.dll": {} }, "runtime": { "lib/netcore50/System.Net.NetworkInformation.dll": {} @@ -12461,9 +11353,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.Net.Primitives.dll": {} @@ -12484,9 +11374,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Net.Requests.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Requests.dll": {} }, "runtime": { "lib/dotnet/System.Net.Requests.dll": {} @@ -12499,9 +11387,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.Sockets.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.Sockets.dll": {} }, "runtime": { "lib/netcore50/System.Net.Sockets.dll": {} @@ -12516,9 +11402,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Net.WebHeaderCollection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} }, "runtime": { "lib/dotnet/System.Net.WebHeaderCollection.dll": {} @@ -12563,9 +11447,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.ObjectModel.dll": { - "related": ".xml" - } + "ref/dotnet/System.ObjectModel.dll": {} }, "runtime": { "lib/dotnet/System.ObjectModel.dll": {} @@ -12694,9 +11576,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Reflection.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} @@ -12710,9 +11590,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Reflection.Context.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Context.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Context.dll": {} @@ -12731,9 +11609,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} @@ -12749,9 +11625,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.dll": {} @@ -12765,9 +11639,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} }, "runtime": { "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} @@ -12785,9 +11657,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} @@ -12812,14 +11682,10 @@ "System.Threading": "4.0.0" }, "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} }, "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": { - "related": ".xml" - } + "lib/dotnet/System.Reflection.Metadata.dll": {} } }, "System.Reflection.Primitives/4.0.0": { @@ -12829,9 +11695,7 @@ "System.Threading": "4.0.0" }, "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.Reflection.Primitives.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} @@ -12850,9 +11714,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} @@ -12866,9 +11728,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": { - "related": ".xml" - } + "ref/netcore50/System.Resources.ResourceManager.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} @@ -12880,9 +11740,7 @@ "System.Private.Uri": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} @@ -12894,9 +11752,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} @@ -12908,9 +11764,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.Handles.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Handles.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} @@ -12925,9 +11779,7 @@ "System.Runtime.Handles": "4.0.0" }, "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.InteropServices.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} @@ -12936,9 +11788,7 @@ "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} @@ -12953,9 +11803,7 @@ "System.Runtime.Extensions": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Numerics.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.Numerics.dll": {} @@ -12967,9 +11815,7 @@ "System.Private.DataContractSerialization": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.Serialization.Json.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} @@ -12982,9 +11828,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Primitives.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} }, "runtime": { "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} @@ -12997,9 +11841,7 @@ "System.Runtime.Serialization.Primitives": "4.0.10" }, "compile": { - "ref/dotnet/System.Runtime.Serialization.Xml.dll": { - "related": ".xml" - } + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} @@ -13020,9 +11862,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} @@ -13038,9 +11878,7 @@ "System.Runtime.WindowsRuntime": "4.0.0" }, "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": { - "related": ".xml" - } + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} }, "runtime": { "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} @@ -13059,9 +11897,7 @@ "System.Security.Principal": "4.0.0" }, "compile": { - "ref/dotnet/System.Security.Claims.dll": { - "related": ".xml" - } + "ref/dotnet/System.Security.Claims.dll": {} }, "runtime": { "lib/dotnet/System.Security.Claims.dll": {} @@ -13073,9 +11909,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/netcore50/System.Security.Principal.dll": { - "related": ".xml" - } + "ref/netcore50/System.Security.Principal.dll": {} }, "runtime": { "lib/netcore50/System.Security.Principal.dll": {} @@ -13088,9 +11922,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Duplex.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Duplex.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Duplex.dll": {} @@ -13103,9 +11935,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/dotnet/System.ServiceModel.Http.dll": { - "related": ".xml" - } + "ref/dotnet/System.ServiceModel.Http.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Http.dll": {} @@ -13118,9 +11948,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.NetTcp.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.NetTcp.dll": {} @@ -13133,9 +11961,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Primitives.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Primitives.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Primitives.dll": {} @@ -13148,9 +11974,7 @@ "System.Runtime": "4.0.20" }, "compile": { - "ref/netcore50/System.ServiceModel.Security.dll": { - "related": ".xml" - } + "ref/netcore50/System.ServiceModel.Security.dll": {} }, "runtime": { "lib/netcore50/System.ServiceModel.Security.dll": {} @@ -13162,9 +11986,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Text.Encoding.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} @@ -13186,9 +12008,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} }, "runtime": { "lib/dotnet/System.Text.Encoding.CodePages.dll": {} @@ -13201,9 +12021,7 @@ "System.Text.Encoding": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} @@ -13220,9 +12038,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": { - "related": ".xml" - } + "ref/dotnet/System.Text.RegularExpressions.dll": {} }, "runtime": { "lib/dotnet/System.Text.RegularExpressions.dll": {} @@ -13235,9 +12051,7 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} @@ -13254,9 +12068,7 @@ "System.Threading": "4.0.10" }, "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Overlapped.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Overlapped.dll": {} @@ -13268,9 +12080,7 @@ "System.Runtime": "4.0.0" }, "compile": { - "ref/dotnet/System.Threading.Tasks.dll": { - "related": ".xml" - } + "ref/dotnet/System.Threading.Tasks.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} @@ -13292,14 +12102,10 @@ "System.Threading.Tasks": "4.0.0" }, "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} }, "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": { - "related": ".XML" - } + "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} } }, "System.Threading.Tasks.Parallel/4.0.0": { @@ -13315,9 +12121,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} }, "runtime": { "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} @@ -13326,9 +12130,7 @@ "System.Threading.Timer/4.0.0": { "type": "package", "compile": { - "ref/netcore50/System.Threading.Timer.dll": { - "related": ".xml" - } + "ref/netcore50/System.Threading.Timer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} @@ -13353,9 +12155,7 @@ "System.Threading.Tasks": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.ReaderWriter.dll": {} }, "runtime": { "lib/dotnet/System.Xml.ReaderWriter.dll": {} @@ -13377,9 +12177,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XDocument.dll": {} @@ -13400,9 +12198,7 @@ "System.Xml.ReaderWriter": "4.0.10" }, "compile": { - "ref/dotnet/System.Xml.XmlDocument.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlDocument.dll": {} }, "runtime": { "lib/dotnet/System.Xml.XmlDocument.dll": {} @@ -13431,9 +12227,7 @@ "System.Xml.XmlDocument": "4.0.0" }, "compile": { - "ref/dotnet/System.Xml.XmlSerializer.dll": { - "related": ".xml" - } + "ref/dotnet/System.Xml.XmlSerializer.dll": {} }, "runtime": { "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} diff --git a/test/NuGet.Core.Tests/NuGet.Commands.Test/PackagesWithRelatedFilesTests.cs b/test/NuGet.Core.Tests/NuGet.Commands.Test/PackagesWithRelatedFilesTests.cs deleted file mode 100644 index 1b2ade62860..00000000000 --- a/test/NuGet.Core.Tests/NuGet.Commands.Test/PackagesWithRelatedFilesTests.cs +++ /dev/null @@ -1,427 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System.Collections.Generic; -using System.Linq; -using System.Threading; -using System.Threading.Tasks; -using NuGet.Configuration; -using NuGet.Frameworks; -using NuGet.ProjectModel; -using NuGet.Test.Utility; -using Xunit; - -namespace NuGet.Commands.Test -{ - public class PackagesWithRelatedFilesTests - { - [Theory] - [InlineData(".exe", "X", new[] { ".config.json", ".pdb", ".xml" })] - [InlineData(".dll", "Test.X", new string[] { })] - [InlineData(".winmd", "NuGet.Test.X", new[] { ".pdb", ".some.random.extension", ".xml" })] - public async Task RelatedProperty_TopLevelPackageWithDifferentExtensions_RelatedPropertyAddedSuccessfully(string assemblyExtension, string assemblyName, string[] relatedExtensionList) - { - // Arrange - using (var pathContext = new SimpleTestPathContext()) - { - var framework = "net5.0"; - // A -> packaegX - var projectA = SimpleTestProjectContext.CreateNETCoreWithSDK( - "A", - pathContext.SolutionRoot, - framework); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - - packageX.AddFile($"lib/net5.0/{assemblyName}{assemblyExtension}"); - foreach (string relatedExtension in relatedExtensionList) - { - packageX.AddFile($"lib/net5.0/{assemblyName}{relatedExtension}"); - } - - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX); - projectA.AddPackageToAllFrameworks(packageX); - - var sources = new List(); - sources.Add(new PackageSource(pathContext.PackageSource)); - projectA.Sources = sources; - projectA.FallbackFolders = new List(); - projectA.FallbackFolders.Add(pathContext.FallbackFolder); - projectA.GlobalPackagesFolder = pathContext.UserPackagesFolder; - - var logger = new TestLogger(); - var request = new TestRestoreRequest(projectA.PackageSpec, projectA.Sources, pathContext.UserPackagesFolder, logger) - { - LockFilePath = projectA.AssetsFileOutputPath - }; - - // Act - var command = new RestoreCommand(request); - var result = await command.ExecuteAsync(); - await result.CommitAsync(logger, CancellationToken.None); - - // Asert - Assert.True(result.Success); - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - - var targets = assetsFile.GetTarget(NuGetFramework.Parse(framework), null); - var lib = targets.Libraries.Single(); - var compileAssemblies = lib.CompileTimeAssemblies; - var runtimeAssemblies = lib.RuntimeAssemblies; - - string expectedRelatedProperty = null; - if (relatedExtensionList.Any()) - { - expectedRelatedProperty = string.Join(";", relatedExtensionList); - } - - // Compile, "related" property is applied. - AssertRelatedProperty(compileAssemblies, $"lib/net5.0/{assemblyName}{assemblyExtension}", expectedRelatedProperty); - - // Runtime, "related" property is applied. - AssertRelatedProperty(runtimeAssemblies, $"lib/net5.0/{assemblyName}{assemblyExtension}", expectedRelatedProperty); - } - } - - [Theory] - [InlineData(".dll", "A", new[] { "A.B.dll", "A.B.C.dll"}, null)] - [InlineData(".exe", "A", new[] { "A.dll", "A.B.dll", "A.B.exe" }, null)] - [InlineData(".dll", "A", new string[] { "A.exe", "A.B.EXE", "A.B.C.DLL", "A.B.C.dll","A.B.winmd" }, null)] - public async Task RelatedProperty_TopLevelPackageWithAssemblyExtensions_RelatedPropertyAddedCorrectly( - string assemblyExtension, - string assemblyName, - string[] assetFileList, - string expectedRelatedProperty) - { - // Arrange - using (var pathContext = new SimpleTestPathContext()) - { - var framework = "net5.0"; - // A -> packaegX - var projectA = SimpleTestProjectContext.CreateNETCoreWithSDK( - "A", - pathContext.SolutionRoot, - framework); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - - packageX.AddFile($"lib/net5.0/{assemblyName}{assemblyExtension}"); - foreach (string assetFile in assetFileList) - { - packageX.AddFile($"lib/net5.0/{assetFile}"); - } - - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX); - projectA.AddPackageToAllFrameworks(packageX); - - var sources = new List(); - sources.Add(new PackageSource(pathContext.PackageSource)); - projectA.Sources = sources; - projectA.FallbackFolders = new List(); - projectA.FallbackFolders.Add(pathContext.FallbackFolder); - projectA.GlobalPackagesFolder = pathContext.UserPackagesFolder; - - var logger = new TestLogger(); - var request = new TestRestoreRequest(projectA.PackageSpec, projectA.Sources, pathContext.UserPackagesFolder, logger) - { - LockFilePath = projectA.AssetsFileOutputPath - }; - - // Act - var command = new RestoreCommand(request); - var result = await command.ExecuteAsync(); - await result.CommitAsync(logger, CancellationToken.None); - - // Asert - Assert.True(result.Success); - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - - var targets = assetsFile.GetTarget(NuGetFramework.Parse(framework), null); - var lib = targets.Libraries.Single(); - var compileAssemblies = lib.CompileTimeAssemblies; - var runtimeAssemblies = lib.RuntimeAssemblies; - - // Compile, "related" property is applied. - AssertRelatedProperty(compileAssemblies, $"lib/net5.0/{assemblyName}{assemblyExtension}", expectedRelatedProperty); - - // Runtime, "related" property is applied. - AssertRelatedProperty(runtimeAssemblies, $"lib/net5.0/{assemblyName}{assemblyExtension}", expectedRelatedProperty); - } - } - - [Fact] - public async Task RelatedProperty_TopLevelPackageWithMultipleAssets_RelatedPropertyAppliedOnCompileRuntimeEmbedOnly() - { - // Arrange - using (var pathContext = new SimpleTestPathContext()) - { - var framework = "net5.0"; - // A -> packaegX - var projectA = SimpleTestProjectContext.CreateNETCoreWithSDK( - "A", - pathContext.SolutionRoot, - framework); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - // Compile - packageX.AddFile("ref/net5.0/X.dll"); - packageX.AddFile("ref/net5.0/X.xml"); - // Runtime - packageX.AddFile("lib/net5.0/X.dll"); - packageX.AddFile("lib/net5.0/X.xml"); - // Embed - packageX.AddFile("embed/net5.0/X.dll"); - packageX.AddFile("embed/net5.0/X.xml"); - // Resources - packageX.AddFile("lib/net5.0/en-US/X.resources.dll"); - packageX.AddFile("lib/net5.0/en-US/X.resources.xml"); - - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX); - projectA.AddPackageToAllFrameworks(packageX); - - var sources = new List(); - sources.Add(new PackageSource(pathContext.PackageSource)); - projectA.Sources = sources; - projectA.FallbackFolders = new List(); - projectA.FallbackFolders.Add(pathContext.FallbackFolder); - projectA.GlobalPackagesFolder = pathContext.UserPackagesFolder; - - var logger = new TestLogger(); - var request = new TestRestoreRequest(projectA.PackageSpec, projectA.Sources, pathContext.UserPackagesFolder, logger) - { - LockFilePath = projectA.AssetsFileOutputPath - }; - - // Act - var command = new RestoreCommand(request); - var result = await command.ExecuteAsync(); - await result.CommitAsync(logger, CancellationToken.None); - - // Asert - Assert.True(result.Success); - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - - var targets = assetsFile.GetTarget(NuGetFramework.Parse(framework), null); - var lib = targets.Libraries.Single(); - - // Compile, "related" property is applied. - var compileAssemblies = lib.CompileTimeAssemblies; - AssertRelatedProperty(compileAssemblies, "ref/net5.0/X.dll", ".xml"); - - // Runtime, "related" property is applied. - var runtimeAssemblies = lib.RuntimeAssemblies; - AssertRelatedProperty(runtimeAssemblies, "lib/net5.0/X.dll", ".xml"); - - // Embed, "related" property is applied. - var embedAssemblies = lib.EmbedAssemblies; - AssertRelatedProperty(embedAssemblies, "embed/net5.0/X.dll", ".xml"); - - // Resources, "related" property is NOT applied. - var resourceAssemblies = lib.ResourceAssemblies; - AssertRelatedProperty(resourceAssemblies, "lib/net5.0/en-US/X.resources.dll", null); - } - } - - [Fact] - public async Task RelatedProperty_TransitivePackageReferenceWithMultipleAssets_RelatedPropertyAppliedOnCompileRuntimeEmbedOnly() - { - // Arrange - using (var pathContext = new SimpleTestPathContext()) - { - var framework = "net5.0"; - // A -> packageX -> packageY - var projectA = SimpleTestProjectContext.CreateNETCoreWithSDK( - "A", - pathContext.SolutionRoot, - framework); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - packageX.AddFile($"lib/net5.0/X.dll"); - - var packageY = new SimpleTestPackageContext("packageY", "1.0.0"); - packageY.Files.Clear(); - // Compile - packageY.AddFile("ref/net5.0/Y.dll"); - packageY.AddFile("ref/net5.0/Y.xml"); - // Runtime - packageY.AddFile("lib/net5.0/Y.dll"); - packageY.AddFile("lib/net5.0/Y.xml"); - // Embed - packageY.AddFile("embed/net5.0/Y.dll"); - packageY.AddFile("embed/net5.0/Y.xml"); - // Resources - packageY.AddFile("lib/net5.0/en-US/Y.resources.dll"); - packageY.AddFile("lib/net5.0/en-US/Y.resources.xml"); - - packageX.Dependencies.Add(packageY); - - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX, packageY); - projectA.AddPackageToAllFrameworks(packageX); - - var sources = new List(); - sources.Add(new PackageSource(pathContext.PackageSource)); - projectA.Sources = sources; - projectA.FallbackFolders = new List(); - projectA.FallbackFolders.Add(pathContext.FallbackFolder); - projectA.GlobalPackagesFolder = pathContext.UserPackagesFolder; - - var logger = new TestLogger(); - var request = new TestRestoreRequest(projectA.PackageSpec, projectA.Sources, pathContext.UserPackagesFolder, logger) - { - LockFilePath = projectA.AssetsFileOutputPath - }; - - // Act - var command = new RestoreCommand(request); - var result = await command.ExecuteAsync(); - await result.CommitAsync(logger, CancellationToken.None); - - // Asert - Assert.True(result.Success); - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - - var targets = assetsFile.GetTarget(NuGetFramework.Parse(framework), null); - - var libX = targets.Libraries.Single(i => i.Name.Equals("packageX")); - var runtimeAssembliesX = libX.RuntimeAssemblies; - AssertRelatedProperty(runtimeAssembliesX, $"lib/net5.0/X.dll", null); - - var libY = targets.Libraries.Single(i => i.Name.Equals("packageY")); - - // Compile, "related" property is applied. - var compileAssembliesY = libY.CompileTimeAssemblies; - AssertRelatedProperty(compileAssembliesY, $"ref/net5.0/Y.dll", ".xml"); - - // Runtime, "related" property is applied. - var runtimeAssembliesY = libY.RuntimeAssemblies; - AssertRelatedProperty(runtimeAssembliesY, $"lib/net5.0/Y.dll", ".xml"); - - // Embed, "related" property is applied. - var embedAssembliesY = libY.EmbedAssemblies; - AssertRelatedProperty(embedAssembliesY, $"embed/net5.0/Y.dll", ".xml"); - - // Resources, "related" property is NOT applied. - var resourceAssembliesY = libY.ResourceAssemblies; - AssertRelatedProperty(resourceAssembliesY, "lib/net5.0/en-US/Y.resources.dll", null); - } - } - - [Fact] - public async Task RelatedProperty_TopLevelPackageWithMultipleAssetsMultipleTFMs_RelatedPropertyAppliedOnCompileRuntimeEmbedOnly() - { - // Arrange - using (var pathContext = new SimpleTestPathContext()) - { - var frameworks = new string[] { "net5.0", "net6.0" }; - // A -> packaegX - var projectA = SimpleTestProjectContext.CreateNETCoreWithSDK( - "A", - pathContext.SolutionRoot, - frameworks); - - var packageX = new SimpleTestPackageContext("packageX", "1.0.0"); - packageX.Files.Clear(); - // Compile - packageX.AddFile("ref/net5.0/X.dll"); - packageX.AddFile("ref/net5.0/X.xml"); - - packageX.AddFile("ref/net6.0/X.dll"); - packageX.AddFile("ref/net6.0/X.pdb"); - // Runtime - packageX.AddFile("lib/net5.0/X.dll"); - packageX.AddFile("lib/net5.0/X.xml"); - - packageX.AddFile("lib/net6.0/X.dll"); - packageX.AddFile("lib/net6.0/X.pdb"); - // Embed - packageX.AddFile("embed/net5.0/X.dll"); - packageX.AddFile("embed/net5.0/X.xml"); - - packageX.AddFile("embed/net6.0/X.dll"); - packageX.AddFile("embed/net6.0/X.pdb"); - // Resources - packageX.AddFile("lib/net5.0/en-US/X.resources.dll"); - packageX.AddFile("lib/net5.0/en-US/X.resources.xml"); - - packageX.AddFile("lib/net6.0/en-US/X.resources.dll"); - packageX.AddFile("lib/net6.0/en-US/X.resources.pdb"); - - await SimpleTestPackageUtility.CreatePackagesAsync(pathContext.PackageSource, packageX); - projectA.AddPackageToAllFrameworks(packageX); - - var sources = new List(); - sources.Add(new PackageSource(pathContext.PackageSource)); - projectA.Sources = sources; - projectA.FallbackFolders = new List(); - projectA.FallbackFolders.Add(pathContext.FallbackFolder); - projectA.GlobalPackagesFolder = pathContext.UserPackagesFolder; - - var logger = new TestLogger(); - var request = new TestRestoreRequest(projectA.PackageSpec, projectA.Sources, pathContext.UserPackagesFolder, logger) - { - LockFilePath = projectA.AssetsFileOutputPath - }; - - // Act - var command = new RestoreCommand(request); - var result = await command.ExecuteAsync(); - await result.CommitAsync(logger, CancellationToken.None); - - // Asert - Assert.True(result.Success); - var assetsFile = projectA.AssetsFile; - Assert.NotNull(assetsFile); - - var targetsNet5 = assetsFile.GetTarget(NuGetFramework.Parse("net5.0"), null); - var libNet5 = targetsNet5.Libraries.Single(); - var targetsNet6 = assetsFile.GetTarget(NuGetFramework.Parse("net6.0"), null); - var libNet6 = targetsNet6.Libraries.Single(); - - // Compile, "related" property is applied. - var compileAssembliesNet5 = libNet5.CompileTimeAssemblies; - AssertRelatedProperty(compileAssembliesNet5, "ref/net5.0/X.dll", ".xml"); - var compileAssembliesNet6 = libNet6.CompileTimeAssemblies; - AssertRelatedProperty(compileAssembliesNet6, "ref/net6.0/X.dll", ".pdb"); - - // Runtime, "related" property is applied. - var runtimeAssembliesNet5 = libNet5.RuntimeAssemblies; - AssertRelatedProperty(runtimeAssembliesNet5, "lib/net5.0/X.dll", ".xml"); - var runtimeAssembliesNet6 = libNet6.RuntimeAssemblies; - AssertRelatedProperty(runtimeAssembliesNet6, "lib/net6.0/X.dll", ".pdb"); - - // Embed, "related" property is applied. - var embedAssembliesNet5 = libNet5.EmbedAssemblies; - AssertRelatedProperty(embedAssembliesNet5, "embed/net5.0/X.dll", ".xml"); - var embedAssembliesNet6 = libNet6.EmbedAssemblies; - AssertRelatedProperty(embedAssembliesNet6, "embed/net6.0/X.dll", ".pdb"); - - // Resources, "related" property is NOT applied. - var resourceAssembliesNet5 = libNet5.ResourceAssemblies; - AssertRelatedProperty(resourceAssembliesNet5, "lib/net5.0/en-US/X.resources.dll", null); - var resourceAssembliesNet6 = libNet6.ResourceAssemblies; - AssertRelatedProperty(resourceAssembliesNet6, "lib/net6.0/en-US/X.resources.dll", null); - } - } - - private void AssertRelatedProperty(IList items, string path, string related) - { - var item = items.Single(i => i.Path.Equals(path)); - if (related == null) - { - Assert.False(item.Properties.ContainsKey("related")); - } - else - { - Assert.Equal(related, item.Properties["related"]); - } - } - } -} diff --git a/test/NuGet.Core.Tests/NuGet.Packaging.Test/RelatedFileExtensionPropertyTests.cs b/test/NuGet.Core.Tests/NuGet.Packaging.Test/RelatedFileExtensionPropertyTests.cs deleted file mode 100644 index ee99ee21576..00000000000 --- a/test/NuGet.Core.Tests/NuGet.Packaging.Test/RelatedFileExtensionPropertyTests.cs +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System.Collections.Generic; -using NuGet.ContentModel; -using Xunit; - -namespace NuGet.Packaging.Test -{ - public class RelatedFileExtensionPropertyTests - { - [Theory] - [InlineData("lib/net50/system.dll", new string[] { "lib/net50/system.dll" }, null)] - [InlineData("lib/net50/system.dll", new string[] { "lib/net50/system.dll", - "lib/net50/system.exe", - "lib/net50/system.winmd" }, null)] - [InlineData("lib/net50/system.dll", new string[] { "lib/net50/system.dll", - "lib/net50/system.Core.dll" }, null)] - [InlineData("lib/net50/system.dll", new string[] { "lib/net50/system.dll", - "lib/net50/system.EXE", - "lib/net50/system.Core.DLL"}, null)] - [InlineData("lib/net50/system.test.dll", new string[] { "lib/net50/system.test.dll", - "lib/net50/system.test.pdb", - "lib/net50/system.test.xml", - "lib/net50/system.test.dll.config" }, ".dll.config;.pdb;.xml")] - [InlineData("lib/net50/system.test.dll", new string[] { "lib/net50/system.test2.dll", - "lib/net50/system.test2.pdb", - "lib/net50/system.test2.xml", - "lib/net50/system.test2.dll.config" }, null)] - [InlineData("lib/net50/system.test.dll", new string[] { "lib/net50/system.test.dll", - "lib/net50/SYSTEM.TEST.pdb", - "lib/net50/System.Test.xml" }, null)] - [InlineData("lib/net50/system.test.dll", new string[] { "lib/net50/system.test.dll", - "lib/net50/system.test.PDB", - "lib/net50/system.test.XML", }, ".PDB;.XML")] - - public void GetRelatedFileExtensionProperty_SingleAssemblyAsset_GetNullProperty(string assembly, string[] assetsPaths, string expectedRelatedProperty) - { - // Arrange - var collection = new ContentItemCollection(); - collection.Load(assetsPaths); - - // Act - string relatedProperty = collection.GetRelatedFileExtensionProperty(assembly, CreateAssetsFromPathList(assetsPaths)); - - // Assert - Assert.Equal(expectedRelatedProperty, relatedProperty); - } - - - [Fact] - public void GetRelatedFileExtensionProperty_PlaceHolderAssembly_GetNullProperty() - { - // Arrange - var collection = new ContentItemCollection(); - string assembly = "_._"; - string[] paths = new string[] - { - "_._" - }; - collection.Load(paths); - - // Act - string relatedProperty = collection.GetRelatedFileExtensionProperty(assembly, CreateAssetsFromPathList(paths)); - - // Assert - Assert.Equal(null, relatedProperty); - } - - - private IEnumerable CreateAssetsFromPathList(string[] paths) - { - List assets = new List(); - foreach (string path in paths) - { - Asset asset = new Asset(); - asset.Path = path; - assets.Add(asset); - } - return assets; - } - } -} diff --git a/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/LockFileTargetLibraryTests.cs b/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/LockFileTargetLibraryTests.cs index a9b273e26a4..cd8a347fca8 100644 --- a/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/LockFileTargetLibraryTests.cs +++ b/test/NuGet.Core.Tests/NuGet.ProjectModel.Test/LockFileTargetLibraryTests.cs @@ -987,46 +987,5 @@ public void HashCode_WithPackageType_IsIgnored() leftSide.GetHashCode().Should().Be(rightSide.GetHashCode()); } - - [Theory] - [InlineData("a", "a", true)] - [InlineData("a .pdb;.xml", "a .pdb;.xml", true)] - [InlineData("a .pdb;.xml", "a;", false)] - [InlineData("a .pdb", "b .pdb", false)] - [InlineData("a .pdb;.xml", "a .xml;.pdb", false)] - public void Equals_WithRuntimeAssembliesAndRelatedFiles(string left, string right, bool expected) - { - string[] leftParts = left.Trim().Split(' '); - var leftRuntimeAssembly = new LockFileItem(leftParts[0]); - if (leftParts.Length > 1) - { - leftRuntimeAssembly.Properties.Add("related", leftParts[1]); - } - var leftSide = new LockFileTargetLibrary() - { - RuntimeAssemblies = new List() { leftRuntimeAssembly } - }; - - string[] rightParts = right.Split(' '); - var rightRuntimeAssembly = new LockFileItem(rightParts[0]); - if (rightParts.Length > 1) - { - rightRuntimeAssembly.Properties.Add("related", rightParts[1]); - } - var rightSide = new LockFileTargetLibrary() - { - RuntimeAssemblies = new List() { rightRuntimeAssembly } - }; - - // Act & Assert - if (expected) - { - leftSide.Should().Be(rightSide); - } - else - { - leftSide.Should().NotBe(rightSide); - } - } } }