diff --git a/lib/datasource/nuget/__fixtures__/latestV2.json b/lib/datasource/nuget/__fixtures__/latestV2.json
deleted file mode 100644
index 438d974c1a149cb75a381d3255b1d0a4c29be356..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/latestV2.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-  "d": {
-    "results": [
-      {
-        "Id": "Newtonsoft.Json",
-        "Version": "11.0.2",
-        "Title": "Json.NET",
-        "Authors": "James Newton-King",
-        "RequireLicenseAcceptance": false,
-        "Description": "Json.NET is a popular high-performance JSON framework for .NET",
-        "ReleaseNotes": "",
-        "Summary": "",
-        "ProjectUrl": "https://www.newtonsoft.com/json",
-        "IconUrl": "https://www.newtonsoft.com/content/images/nugeticon.png",
-        "LicenseUrl": "https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md",
-        "Copyright": "Copyright © James Newton-King 2008",
-        "Tags": "json",
-        "Dependencies": "::.NETFramework2.0|::.NETFramework3.5|::.NETFramework4.0|::.NETFramework4.5|::.NETPortable0.0-Profile259|::.NETPortable0.0-Profile328|Microsoft.CSharp:4.3.0:.NETStandard1.0|NETStandard.Library:1.6.1:.NETStandard1.0|System.ComponentModel.TypeConverter:4.3.0:.NETStandard1.0|System.Runtime.Serialization.Primitives:4.3.0:.NETStandard1.0|Microsoft.CSharp:4.3.0:.NETStandard1.3|NETStandard.Library:1.6.1:.NETStandard1.3|System.ComponentModel.TypeConverter:4.3.0:.NETStandard1.3|System.Runtime.Serialization.Formatters:4.3.0:.NETStandard1.3|System.Runtime.Serialization.Primitives:4.3.0:.NETStandard1.3|System.Xml.XmlDocument:4.3.0:.NETStandard1.3|::.NETStandard2.0",
-        "Repository": "Inedo.ProGet.Feeds.NuGet.NuGetRepository",
-        "IsLocalPackage": true,
-        "LastUpdated": "\\/Date(1523621009833+0)\\/",
-        "Created": "\\/Date(1523621009833+0)\\/",
-        "Published": "\\/Date(1523621009833+0)\\/",
-        "PackageSize": "2400102",
-        "PackageHash": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
-        "IsLatestVersion": false,
-        "IsAbsoluteLatestVersion": false,
-        "IsProGetHosted": true,
-        "IsPrerelease": false,
-        "IsCached": true,
-        "NormalizedVersion": "11.0.2",
-        "Listed": true,
-        "PackageHashAlgorithm": "SHA512",
-        "HasSymbols": false,
-        "HasSource": false,
-        "DownloadCount": 155,
-        "VersionDownloadCount": 155
-      }
-    ],
-    "count": 0
-  }
-}
diff --git a/lib/datasource/nuget/__fixtures__/nlog/nuspec.xml b/lib/datasource/nuget/__fixtures__/nlog/nuspec.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7a168dd37c9f41f9a5d7c5348c093aaee8c45792
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nlog/nuspec.xml
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="utf-8"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
+  <metadata>
+    <id>NLog</id>
+    <version>4.7.3</version>
+    <title>NLog for .NET Framework and .NET Standard</title>
+    <authors>Jarek Kowalski,Kim Christensen,Julian Verdurmen</authors>
+    <owners>Jarek Kowalski,Kim Christensen,Julian Verdurmen</owners>
+    <requireLicenseAcceptance>false</requireLicenseAcceptance>
+    <licenseUrl>https://github.com/NLog/NLog/blob/master/LICENSE.txt</licenseUrl>
+    <projectUrl>https://nlog-project.org/</projectUrl>
+    <iconUrl>https://nlog-project.org/N.png</iconUrl>
+    <description>NLog is a logging platform for .NET with rich log routing and management capabilities.
+      NLog supports traditional logging, structured logging and the combination of both.
+
+      Supported platforms:
+
+      - .NET Framework 3.5, 4, 4.5, 4.6, 4.7 &amp; 4.8
+      - .NET Standard 1.3+ and 2.0+;
+      - .NET Framework 4 client profile
+      - Xamarin Android, Xamarin iOs
+      - UWP
+      - Windows Phone 8
+      - Silverlight 4 and 5
+      - Mono 4
+
+      For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
+    </description>
+    <releaseNotes>## Features
+      - Allow to change the RuleName of a LoggingRule (#4017) (@304NotModified)
+      - logging of AggregrateException.Data to prevent it from losing it after Flatten call (#3974) (@chaos0307)
+
+      ## Bugfixes
+      - LocalIpAddressLayoutRenderer - IsDnsEligible and PrefixOrigin throws PlatformNotSupportedException on Linux
+      (#4011) (@snakefoot)
+
+      ## Improvements
+      - ObjectReflectionCache - Reduce noise from properties that throws exceptions like Stream.ReadTimeout (#4057)
+      (@snakefoot)
+      - MessageTemplates - Changed Literal.Skip to be Int32 to support message templates longer than short.MaxValue
+      (#4053) (@snakefoot)
+      - ObjectReflectionCache - Skip reflection for Stream objects (#4043) (@snakefoot)
+      - LogFactory Shutdown is public so it can be used from NLogLoggerProvider (#3999) (@snakefoot)
+      - Editor config with File header template (#3972) (@304NotModified)
+
+      ## Performance
+      - FileTarget - Skip delegate capture in GetFileCreationTimeSource. Fallback only necessary when appender has been
+      closed. (#4058) (@snakefoot)
+      - ObjectReflectionCache - Reduce initial memory allocation until needed (#4021) (@snakefoot)
+      - FilteringTargetWrapper - Remove delegate allocation (#3977) (@snakefoot)
+
+      Full changelog: https://github.com/NLog/NLog/blob/master/CHANGELOG.md
+
+      For all config options and platform support, check https://nlog-project.org/config/
+    </releaseNotes>
+    <copyright>Copyright (c) 2004-2020 NLog Project - https://nlog-project.org/</copyright>
+    <tags>NLog logging log structured tracing logfiles database eventlog email wcf console</tags>
+    <repository type="git" url="https://github.com/NLog/NLog.git"/>
+    <dependencies>
+      <group targetFramework=".NETFramework3.5"/>
+      <group targetFramework=".NETFramework4.0-Client"/>
+      <group targetFramework=".NETFramework4.5"/>
+      <group targetFramework=".NETStandard1.3">
+        <dependency id="Microsoft.Extensions.PlatformAbstractions" version="1.0.0" exclude="Build,Analyzers"/>
+        <dependency id="NETStandard.Library" version="1.6.0" exclude="Build,Analyzers"/>
+        <dependency id="System.ComponentModel.Primitives" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.ComponentModel.TypeConverter" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Data.Common" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Diagnostics.StackTrace" version="4.0.1" exclude="Build,Analyzers"/>
+        <dependency id="System.Net.NameResolution" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Net.Requests" version="4.0.11" exclude="Build,Analyzers"/>
+        <dependency id="System.Reflection.TypeExtensions" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Xml.XmlDocument" version="4.0.1" exclude="Build,Analyzers"/>
+      </group>
+      <group targetFramework=".NETStandard1.5">
+        <dependency id="NETStandard.Library" version="1.6.0" exclude="Build,Analyzers"/>
+        <dependency id="System.ComponentModel.Primitives" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.ComponentModel.TypeConverter" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Data.Common" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Diagnostics.Process" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Diagnostics.StackTrace" version="4.0.1" exclude="Build,Analyzers"/>
+        <dependency id="System.Diagnostics.TraceSource" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.IO.FileSystem.Watcher" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Net.NameResolution" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Net.Requests" version="4.0.11" exclude="Build,Analyzers"/>
+        <dependency id="System.Reflection.TypeExtensions" version="4.1.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Runtime.Loader" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Threading.Thread" version="4.0.0" exclude="Build,Analyzers"/>
+        <dependency id="System.Xml.XmlDocument" version="4.0.1" exclude="Build,Analyzers"/>
+      </group>
+      <group targetFramework="MonoAndroid4.4"/>
+      <group targetFramework="Silverlight4.0"/>
+      <group targetFramework="Silverlight5.0"/>
+      <group targetFramework="WindowsPhone8.0"/>
+      <group targetFramework="Xamarin.iOS1.0"/>
+      <group targetFramework=".NETStandard2.0"/>
+    </dependencies>
+    <frameworkAssemblies>
+      <frameworkAssembly assemblyName="Java.Interop" targetFramework="MonoAndroid4.4"/>
+      <frameworkAssembly assemblyName="Mono.Android" targetFramework="MonoAndroid4.4"/>
+      <frameworkAssembly assemblyName="mscorlib"
+                         targetFramework="MonoAndroid4.4, Silverlight4.0, Silverlight5.0, WindowsPhone8.0, Xamarin.iOS1.0"/>
+      <frameworkAssembly assemblyName="System.Core"
+                         targetFramework="MonoAndroid4.4, .NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5, Silverlight4.0, Silverlight5.0, WindowsPhone8.0, Xamarin.iOS1.0"/>
+      <frameworkAssembly assemblyName="System"
+                         targetFramework="MonoAndroid4.4, .NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5, Silverlight4.0, Silverlight5.0, WindowsPhone8.0, Xamarin.iOS1.0"/>
+      <frameworkAssembly assemblyName="System.Xml"
+                         targetFramework="MonoAndroid4.4, .NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5, Silverlight4.0, Silverlight5.0, WindowsPhone8.0, Xamarin.iOS1.0"/>
+      <frameworkAssembly assemblyName="System.Xml.Linq" targetFramework="MonoAndroid4.4"/>
+      <frameworkAssembly assemblyName="System.Configuration"
+                         targetFramework=".NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5"/>
+      <frameworkAssembly assemblyName="System.Data"
+                         targetFramework=".NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5"/>
+      <frameworkAssembly assemblyName="System.Runtime.Serialization"
+                         targetFramework=".NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5, Silverlight4.0, Silverlight5.0"/>
+      <frameworkAssembly assemblyName="System.ServiceModel"
+                         targetFramework=".NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5, Silverlight4.0, Silverlight5.0"/>
+      <frameworkAssembly assemblyName="System.Transactions"
+                         targetFramework=".NETFramework3.5, .NETFramework4.0-Client, .NETFramework4.5"/>
+      <frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.0-Client, .NETFramework4.5"/>
+      <frameworkAssembly assemblyName="System.IO.Compression" targetFramework=".NETFramework4.5"/>
+      <frameworkAssembly assemblyName="System.Net" targetFramework="Silverlight4.0, Silverlight5.0, WindowsPhone8.0"/>
+      <frameworkAssembly assemblyName="System.Windows.Browser" targetFramework="Silverlight4.0, Silverlight5.0"/>
+      <frameworkAssembly assemblyName="System.Windows"
+                         targetFramework="Silverlight4.0, Silverlight5.0, WindowsPhone8.0"/>
+      <frameworkAssembly assemblyName="Xamarin.iOS" targetFramework="Xamarin.iOS1.0"/>
+    </frameworkAssemblies>
+  </metadata>
+</package>
diff --git a/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_1.json b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_1.json
new file mode 100644
index 0000000000000000000000000000000000000000..ffbc68345134a4555dc89a751f6e834418c2cce9
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_1.json
@@ -0,0 +1,5003 @@
+{
+  "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/1.0.0.505/4.4.0-beta5.json",
+  "@type": "catalog:CatalogPage",
+  "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+  "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+  "count": 64,
+  "items": [
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/1.0.0.505.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.44/nlog.1.0.0.505.json",
+        "@type": "PackageDetails",
+        "authors": "Jaroslaw Kowalski",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.",
+        "iconUrl": "",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/1.0.0.505/nlog.1.0.0.505.nupkg",
+        "projectUrl": "",
+        "published": "2011-01-07T07:57:35.043+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "1.0.0.505"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/1.0.0.505/nlog.1.0.0.505.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/2.0.0.2000.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.37/nlog.2.0.0.2000.json",
+        "@type": "PackageDetails",
+        "authors": "Jaroslaw Kowalski",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.0.2000/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "https://raw.github.com/jkowalski/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.0.2000/nlog.2.0.0.2000.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2011-07-18T14:20:06.54+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "2.0.0.2000"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.0.2000/nlog.2.0.0.2000.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/2.0.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.37/nlog.2.0.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1/nlog.2.0.1.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          ""
+        ],
+        "title": "NLog",
+        "version": "2.0.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1/nlog.2.0.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/2.0.1.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.37/nlog.2.0.1.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.1/nlog.2.0.1.1.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          ""
+        ],
+        "title": "NLog",
+        "version": "2.0.1.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.1/nlog.2.0.1.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/2.0.1.2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.37/nlog.2.0.1.2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.2/nlog.2.0.1.2.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2013-04-08T10:18:27.3+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "2.0.1.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.0.1.2/nlog.2.0.1.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/2.1.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.02.37/nlog.2.1.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/2.1.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.1.0/nlog.2.1.0.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2013-10-10T22:26:20.613+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "2.1.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/2.1.0/nlog.2.1.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/3.0.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.51/nlog.3.0.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/3.0.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.0.0/nlog.3.0.0.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2014-06-02T14:47:27.65+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "3.0.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.0.0/nlog.3.0.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/3.1.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.51/nlog.3.1.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/3.1.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.1.0/nlog.3.1.0.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2014-06-24T18:42:54.117+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "3.1.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.1.0/nlog.3.1.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/3.2.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.42/nlog.3.2.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.0/nlog.3.2.0.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2015-01-02T10:14:28.843+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "3.2.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.0/nlog.3.2.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/3.2.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.32/nlog.3.2.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.1/nlog.3.2.1.nupkg",
+        "projectUrl": "http://github.com/NLog/NLog/",
+        "published": "2015-04-24T21:15:30.34+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "3.2.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/3.2.1/nlog.3.2.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.0.0-rc.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.32/nlog.4.0.0-rc.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0-rc/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0-rc/nlog.4.0.0-rc.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.0.0-rc"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0-rc/nlog.4.0.0-rc.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.0.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.01.32/nlog.4.0.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.\n\nCheck https://www.nuget.org/packages/NLog.Extended/4.0.0\nfor server specific extensions on NLog.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0/nlog.4.0.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-06-09T19:41:48.923+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.0.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.0/nlog.4.0.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.0.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.53/nlog.4.0.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.1/nlog.4.0.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-06-18T20:46:30.997+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.0.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.0.1/nlog.4.0.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.0-alpha1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.53/nlog.4.1.0-alpha1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-alpha1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-alpha1/nlog.4.1.0-alpha1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.0-alpha1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-alpha1/nlog.4.1.0-alpha1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.0-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.53/nlog.4.1.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-rc1/nlog.4.1.0-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0-rc1/nlog.4.1.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.53/nlog.4.1.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0/nlog.4.1.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-08-31T17:29:28.263+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.0/nlog.4.1.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.1-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.15/nlog.4.1.1-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1-rc1/nlog.4.1.1-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.1-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1-rc1/nlog.4.1.1-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.15/nlog.4.1.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1/nlog.4.1.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-09-12T14:10:41.85+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.1/nlog.4.1.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.1.2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.08/nlog.4.1.2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.2/nlog.4.1.2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-09-20T19:49:25.11+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.1.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.1.2/nlog.4.1.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.0-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.08/nlog.4.2.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0-rc1/nlog.4.2.0-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.2.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0-rc1/nlog.4.2.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.06.00.08/nlog.4.2.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.\n\n[BSD license]",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0/nlog.4.2.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-10-24T20:48:16.067+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging [BSD]",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.2.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.0/nlog.4.2.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.1-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.59.30/nlog.4.2.1-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1-rc1/nlog.4.2.1-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.2.1-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1-rc1/nlog.4.2.1-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.59.30/nlog.4.2.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1/nlog.4.2.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-11-21T14:35:27.68+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.2.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.1/nlog.4.2.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.59.23/nlog.4.2.2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.2/nlog.4.2.2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-12-02T22:45:07.057+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.2.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.2/nlog.4.2.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.2.3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.59.23/nlog.4.2.3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.3/nlog.4.2.3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2015-12-20T22:21:32.393+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.2.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.2.3/nlog.4.2.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-alpha1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.59.23/nlog.4.3.0-alpha1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha1/nlog.4.3.0-alpha1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-alpha1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha1/nlog.4.3.0-alpha1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-alpha2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.58.44/nlog.4.3.0-alpha2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha2/nlog.4.3.0-alpha2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "xamarin"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-alpha2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha2/nlog.4.3.0-alpha2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-alpha3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.58.44/nlog.4.3.0-alpha3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,  Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha3/nlog.4.3.0-alpha3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-alpha3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha3/nlog.4.3.0-alpha3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-alpha4.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.58.44/nlog.4.3.0-alpha4.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha4/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha4/nlog.4.3.0-alpha4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-alpha4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-alpha4/nlog.4.3.0-alpha4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-beta1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.58.44/nlog.4.3.0-beta1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta1/nlog.4.3.0-beta1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-beta1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta1/nlog.4.3.0-beta1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-beta2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.58.06/nlog.4.3.0-beta2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta2/nlog.4.3.0-beta2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-beta2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta2/nlog.4.3.0-beta2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-beta3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.59/nlog.4.3.0-beta3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta3/nlog.4.3.0-beta3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-beta3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-beta3/nlog.4.3.0-beta3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.59/nlog.4.3.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc1/nlog.4.3.0-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc1/nlog.4.3.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-rc2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.59/nlog.4.3.0-rc2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc2/nlog.4.3.0-rc2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-rc2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc2/nlog.4.3.0-rc2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0-rc3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.59/nlog.4.3.0-rc3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc3/nlog.4.3.0-rc3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.0-rc3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0-rc3/nlog.4.3.0-rc3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.21/nlog.4.3.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0/nlog.4.3.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-04-16T12:06:14.047+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET, Silverlight & Xamarin Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "android",
+          "xamarin",
+          "ios"
+        ],
+        "title": "NLog",
+        "version": "4.3.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.0/nlog.4.3.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.1-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.14/nlog.4.3.1-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1-rc1/nlog.4.3.1-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.1-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1-rc1/nlog.4.3.1-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.14/nlog.4.3.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1/nlog.4.3.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-04-20T08:38:41+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.1/nlog.4.3.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.57.14/nlog.4.3.2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.2/nlog.4.3.2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-04-26T20:20:30.51+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.2/nlog.4.3.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.36/nlog.4.3.3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.3/nlog.4.3.3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-04-28T20:41:45.63+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.3/nlog.4.3.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.4.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.28/nlog.4.3.4.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.4/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.4/nlog.4.3.4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-05-16T21:30:35.15+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.4/nlog.4.3.4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.5-alpha1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.21/nlog.4.3.5-alpha1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5-alpha1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5-alpha1/nlog.4.3.5-alpha1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.5-alpha1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5-alpha1/nlog.4.3.5-alpha1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.5.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.13/nlog.4.3.5.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5/nlog.4.3.5.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-06-12T22:24:27.787+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.5"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.5/nlog.4.3.5.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.6.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.06/nlog.4.3.6.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.6/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.6/nlog.4.3.6.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-07-23T22:39:36.957+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.6"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.6/nlog.4.3.6.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.7.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.06/nlog.4.3.7.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.7/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.7/nlog.4.3.7.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-08-06T13:22:54.357+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.7"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.7/nlog.4.3.7.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.8.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.06/nlog.4.3.8.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.8/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.8/nlog.4.3.8.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-09-05T19:24:50.107+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.8"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.8/nlog.4.3.8.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.9-test-retry-archive.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.56.06/nlog.4.3.9-test-retry-archive.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9-test-retry-archive/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9-test-retry-archive/nlog.4.3.9-test-retry-archive.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.9-test-retry-archive"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9-test-retry-archive/nlog.4.3.9-test-retry-archive.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.9.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.28/nlog.4.3.9.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9/nlog.4.3.9.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-09-18T15:32:44.897+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.9"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.9/nlog.4.3.9.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.10.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.3.10.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.10/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.10/nlog.4.3.10.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-10-11T20:03:23.587+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.10"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.10/nlog.4.3.10.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.3.11.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.3.11.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.11/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.11/nlog.4.3.11.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-11-07T21:13:11.687+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.3.11"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.3.11/nlog.4.3.11.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-alpha1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnx4.5.1",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "DNX4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/dnxcore5.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              }
+            ],
+            "targetFramework": "DNXCore5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/uap10.0/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/uap10.0/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/uap10.0/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.55.21/nlog.4.4.0-alpha1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha1/nlog.4.4.0-alpha1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "coreclr"
+        ],
+        "title": "",
+        "version": "4.4.0-alpha1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha1/nlog.4.4.0-alpha1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-alpha2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netframework4.5.1/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-16532, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-23706, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.43/nlog.4.4.0-alpha2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha2/nlog.4.4.0-alpha2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "coreclr",
+          "dnx",
+          "dotnet5"
+        ],
+        "title": "",
+        "version": "4.4.0-alpha2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha2/nlog.4.4.0-alpha2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-alpha3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netframework4.5.1/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-16532, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-23706, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.36/nlog.4.4.0-alpha3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha3/nlog.4.4.0-alpha3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "",
+        "version": "4.4.0-alpha3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha3/nlog.4.4.0-alpha3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-alpha4.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netframework4.5.1/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-23720, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-16532, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-23706, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-alpha4.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha4/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha4/nlog.4.4.0-alpha4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "",
+        "version": "4.4.0-alpha4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-alpha4/nlog.4.4.0-alpha4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta-14.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta-14.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta-14/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta-14/nlog.4.4.0-beta-14.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta-14"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta-14/nlog.4.4.0-beta-14.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netframework4.5.1/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/.netplatform5.4/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-beta-23225, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta1/nlog.4.4.0-beta1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "dnx"
+        ],
+        "title": "",
+        "version": "4.4.0-beta1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta1/nlog.4.4.0-beta1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta10.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.54.30/nlog.4.4.0-beta10.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta10/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta10/nlog.4.4.0-beta10.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta10"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta10/nlog.4.4.0-beta10.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta11.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.49/nlog.4.4.0-beta11.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta11/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta11/nlog.4.4.0-beta11.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta11"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta11/nlog.4.4.0-beta11.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta12.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta12.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta12/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta12/nlog.4.4.0-beta12.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta12"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta12/nlog.4.4.0-beta12.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta13.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.41/nlog.4.4.0-beta13.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta13/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta13/nlog.4.4.0-beta13.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta13"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta13/nlog.4.4.0-beta13.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/.netplatform5.4/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-beta-23225, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.20/nlog.4.4.0-beta2.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta2/nlog.4.4.0-beta2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "dnx",
+          "dotnet54"
+        ],
+        "title": "",
+        "version": "4.4.0-beta2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta2/nlog.4.4.0-beta2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/.netplatform5.4/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-beta-23225, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.13/nlog.4.4.0-beta3.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta3/nlog.4.4.0-beta3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "dnx"
+        ],
+        "title": "",
+        "version": "4.4.0-beta3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta3/nlog.4.4.0-beta3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta4.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/.netplatform5.4/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-beta-23225, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.05/nlog.4.4.0-beta4.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta4/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta4/nlog.4.4.0-beta4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "",
+        "version": "4.4.0-beta4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta4/nlog.4.4.0-beta4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta5.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netframework4.5.1",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5.1"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.io.compression",
+                "@type": "PackageDependency",
+                "id": "System.IO.Compression",
+                "range": "[4.0.1-beta-23409, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.compression/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc1-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-beta-23516, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/.netplatform5.4/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-beta-23225, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              }
+            ],
+            "targetFramework": ".NETPlatform5.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta5.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta5/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta5/nlog.4.4.0-beta5.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "",
+        "version": "4.4.0-beta5"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta5/nlog.4.4.0-beta5.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    }
+  ],
+  "parent": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json",
+  "lower": "1.0.0.505",
+  "upper": "4.4.0-beta5",
+  "@context": {
+    "@vocab": "http://schema.nuget.org/schema#",
+    "catalog": "http://schema.nuget.org/catalog#",
+    "xsd": "http://www.w3.org/2001/XMLSchema#",
+    "items": {
+      "@id": "catalog:item",
+      "@container": "@set"
+    },
+    "commitTimeStamp": {
+      "@id": "catalog:commitTimeStamp",
+      "@type": "xsd:dateTime"
+    },
+    "commitId": {
+      "@id": "catalog:commitId"
+    },
+    "count": {
+      "@id": "catalog:count"
+    },
+    "parent": {
+      "@id": "catalog:parent",
+      "@type": "@id"
+    },
+    "tags": {
+      "@id": "tag",
+      "@container": "@set"
+    },
+    "reasons": {
+      "@container": "@set"
+    },
+    "packageTargetFrameworks": {
+      "@id": "packageTargetFramework",
+      "@container": "@set"
+    },
+    "dependencyGroups": {
+      "@id": "dependencyGroup",
+      "@container": "@set"
+    },
+    "dependencies": {
+      "@id": "dependency",
+      "@container": "@set"
+    },
+    "packageContent": {
+      "@type": "@id"
+    },
+    "published": {
+      "@type": "xsd:dateTime"
+    },
+    "registration": {
+      "@type": "@id"
+    }
+  }
+}
diff --git a/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_2.json b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_2.json
new file mode 100644
index 0000000000000000000000000000000000000000..cee38ba6ec520b933b463631ccc582df4c2fc53b
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_2.json
@@ -0,0 +1,9389 @@
+{
+  "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.4.0-beta6/4.6.0-rc2.json",
+  "@type": "catalog:CatalogPage",
+  "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+  "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+  "count": 64,
+  "items": [
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta6.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework3.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework4.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netframework4.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.console",
+                "@type": "PackageDependency",
+                "id": "System.Console",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.console/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.diagnostics.tools",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Tools",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tools/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.linq",
+                "@type": "PackageDependency",
+                "id": "System.Linq",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.threading.timer",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Timer",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.timer/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/microsoft.aspnetcore.hosting.abstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.AspNetCore.Hosting.Abstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.hosting.abstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/silverlight4.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.58/nlog.4.4.0-beta6.json#dependencygroup/silverlight5.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              }
+            ],
+            "targetFramework": "Silverlight5.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta6/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta6/nlog.4.4.0-beta6.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.0-beta6"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta6/nlog.4.4.0-beta6.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta7.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/microsoft.aspnetcore.hosting.abstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.AspNetCore.Hosting.Abstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.hosting.abstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.34/nlog.4.4.0-beta7.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta7/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta7/nlog.4.4.0-beta7.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.0-beta7"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta7/nlog.4.4.0-beta7.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta8.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/microsoft.aspnetcore.hosting.abstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.AspNetCore.Hosting.Abstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.hosting.abstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.53.27/nlog.4.4.0-beta8.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta8/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta8/nlog.4.4.0-beta8.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta8"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta8/nlog.4.4.0-beta8.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-beta9.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.5.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0-rc2-final, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.collections.specialized",
+                "@type": "PackageDependency",
+                "id": "System.Collections.Specialized",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.specialized/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1-rc2-24027, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.20/nlog.4.4.0-beta9.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta9/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta9/nlog.4.4.0-beta9.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-beta9"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-beta9/nlog.4.4.0-beta9.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-betav14.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json",
+        "@type": "PackageDetails",
+        "authors": "NLog",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav14.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav14/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav14/nlog.4.4.0-betav14.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-betaV14"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav14/nlog.4.4.0-betav14.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-betav15.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-betav15.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav15/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav15/nlog.4.4.0-betav15.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "4.4.0-betaV15"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-betav15/nlog.4.4.0-betav15.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.52.12/nlog.4.4.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc1/nlog.4.4.0-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc1/nlog.4.4.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0-rc2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.51.35/nlog.4.4.0-rc2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc2/nlog.4.4.0-rc2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.0-rc2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0-rc2/nlog.4.4.0-rc2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.0.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.51.35/nlog.4.4.0.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0/nlog.4.4.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-12-14T10:47:25.29+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.0/nlog.4.4.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.1-dev-b4084.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.51.27/nlog.4.4.1-dev-b4084.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4084/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4084/nlog.4.4.1-dev-b4084.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.1-dev-b4084"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4084/nlog.4.4.1-dev-b4084.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.1-dev-b4085.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.51.27/nlog.4.4.1-dev-b4085.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4085/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4085/nlog.4.4.1-dev-b4085.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.1-dev-b4085"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1-dev-b4085/nlog.4.4.1-dev-b4085.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.51.27/nlog.4.4.1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1/nlog.4.4.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2016-12-24T00:50:07.05+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.1/nlog.4.4.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.2-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.47/nlog.4.4.2-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc1/nlog.4.4.2-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.2-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc1/nlog.4.4.2-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.2-rc2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.40/nlog.4.4.2-rc2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc2/nlog.4.4.2-rc2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.2-rc2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2-rc2/nlog.4.4.2-rc2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.40/nlog.4.4.2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2/nlog.4.4.2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-02-06T21:38:25.163+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.2/nlog.4.4.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.40/nlog.4.4.3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.3/nlog.4.4.3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-02-17T20:49:31.62+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.3/nlog.4.4.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.4.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.40/nlog.4.4.4.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.4/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.4/nlog.4.4.4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-03-10T22:09:53.593+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.4.4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.4/nlog.4.4.4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.5-beta1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.02/nlog.4.4.5-beta1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5-beta1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5-beta1/nlog.4.4.5-beta1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.5-beta1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5-beta1/nlog.4.4.5-beta1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.5.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.02/nlog.4.4.5.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5/nlog.4.4.5.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-03-28T20:33:59.553+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.5"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.5/nlog.4.4.5.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.6-beta1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.55/nlog.4.4.6-beta1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta1/nlog.4.4.6-beta1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.6-beta1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta1/nlog.4.4.6-beta1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.6-beta2.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.55/nlog.4.4.6-beta2.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta2/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta2/nlog.4.4.6-beta2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.6-beta2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta2/nlog.4.4.6-beta2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.6-beta3.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.50.40/nlog.4.4.6-beta3.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta3/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta3/nlog.4.4.6-beta3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.6-beta3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-beta3/nlog.4.4.6-beta3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.6-rc1.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.16/nlog.4.4.6-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-rc1/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-rc1/nlog.4.4.6-rc1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.6-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6-rc1/nlog.4.4.6-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.6.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.09/nlog.4.4.6.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6/nlog.4.4.6.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-04-15T13:21:00.143+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.6"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.6/nlog.4.4.6.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.7.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.03/nlog.4.4.7.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.7/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.7/nlog.4.4.7.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-04-25T21:25:50.54+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.7"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.7/nlog.4.4.7.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.8.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.03/nlog.4.4.8.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.8/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.8/nlog.4.4.8.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-04-28T21:58:14.857+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.8"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.8/nlog.4.4.8.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.9.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.49.03/nlog.4.4.9.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.9/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.9/nlog.4.4.9.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-05-05T21:27:55.517+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.9"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.9/nlog.4.4.9.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.10.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.48.24/nlog.4.4.10.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.10/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.10/nlog.4.4.10.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-05-31T19:11:43+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.10"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.10/nlog.4.4.10.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.11.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.48.24/nlog.4.4.11.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.11/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.11/nlog.4.4.11.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-06-17T11:53:19.87+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.11"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.11/nlog.4.4.11.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.12.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.48.24/nlog.4.4.12.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.12/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.12/nlog.4.4.12.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2017-08-08T19:31:51.007+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.12"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.12/nlog.4.4.12.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.4.13.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.48.24/nlog.4.4.13.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen,Julian Verdurmen",
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.13/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.13/nlog.4.4.13.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-02-27T23:49:22.21+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "archiving",
+          "database",
+          "eventlog",
+          "email"
+        ],
+        "title": "NLog",
+        "version": "4.4.13"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.4.13/nlog.4.4.13.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-alpha01.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha01.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha01.json#dependencygroup",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha01.json#dependencygroup/nlog.structuredevents",
+                "@type": "PackageDependency",
+                "id": "NLog.StructuredEvents",
+                "range": "[0.3.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog.structuredevents/index.json"
+              }
+            ]
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha01/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha01/nlog.4.5.0-alpha01.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.5.0-alpha01"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha01/nlog.4.5.0-alpha01.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-alpha02.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha02.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha02.json#dependencygroup",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha02.json#dependencygroup/nlog.structuredevents",
+                "@type": "PackageDependency",
+                "id": "NLog.StructuredEvents",
+                "range": "[0.3.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog.structuredevents/index.json"
+              }
+            ]
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha02/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha02/nlog.4.5.0-alpha02.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.5.0-alpha02"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha02/nlog.4.5.0-alpha02.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-alpha03.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha03.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha03.json#dependencygroup",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha03.json#dependencygroup/nlog.structuredevents",
+                "@type": "PackageDependency",
+                "id": "NLog.StructuredEvents",
+                "range": "[0.3.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog.structuredevents/index.json"
+              }
+            ]
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha03/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha03/nlog.4.5.0-alpha03.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.5.0-alpha03"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha03/nlog.4.5.0-alpha03.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-alpha04.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha04.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha04.json#dependencygroup",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.44/nlog.4.5.0-alpha04.json#dependencygroup/nlog.structuredevents",
+                "@type": "PackageDependency",
+                "id": "NLog.StructuredEvents",
+                "range": "[0.3.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog.structuredevents/index.json"
+              }
+            ]
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity.\nThis package installs NLog.dll with includes core logging functionality.\nFor your main project also need to install \"NLog Configuration\" package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha04/icon",
+        "id": "NLog",
+        "language": "en-US",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha04/nlog.4.5.0-alpha04.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Advanced .NET and Silverlight Logging",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog",
+        "version": "4.5.0-alpha04"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-alpha04/nlog.4.5.0-alpha04.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta01.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0/system.private.servicemodel",
+                "@type": "PackageDependency",
+                "id": "System.Private.ServiceModel",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.private.servicemodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.06/nlog.4.5.0-beta01.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta01/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta01/nlog.4.5.0-beta01.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for unknown platform",
+        "version": "4.5.0-beta01"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta01/nlog.4.5.0-beta01.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta02.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.47.00/nlog.4.5.0-beta02.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta02/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta02/nlog.4.5.0-beta02.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for unknown platform",
+        "version": "4.5.0-beta02"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta02/nlog.4.5.0-beta02.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta03.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta03.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta03/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta03/nlog.4.5.0-beta03.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for unknown platform",
+        "version": "4.5.0-beta03"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta03/nlog.4.5.0-beta03.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta04.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta04.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta04/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta04/nlog.4.5.0-beta04.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-beta04"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta04/nlog.4.5.0-beta04.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta05.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta05.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta05/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta05/nlog.4.5.0-beta05.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-beta05"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta05/nlog.4.5.0-beta05.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta06.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.53/nlog.4.5.0-beta06.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta06/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta06/nlog.4.5.0-beta06.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-beta06"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta06/nlog.4.5.0-beta06.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta07.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.io.filesystem",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.runtime.serialization.formatters",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Formatters",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard1.5/system.xml.xmlserializer",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlSerializer",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmlserializer/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0/system.servicemodel.duplex",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Duplex",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.duplex/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0/system.servicemodel.nettcp",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.NetTcp",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.nettcp/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0/system.servicemodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Primitives",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.12/nlog.4.5.0-beta07.json#dependencygroup/.netstandard2.0/system.servicemodel.security",
+                "@type": "PackageDependency",
+                "id": "System.ServiceModel.Security",
+                "range": "[4.4.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.servicemodel.security/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta07/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta07/nlog.4.5.0-beta07.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-beta07"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta07/nlog.4.5.0-beta07.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-beta08.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard1.5/system.xml.xmlserializer",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlSerializer",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmlserializer/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.46.05/nlog.4.5.0-beta08.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta08/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta08/nlog.4.5.0-beta08.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-beta08"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-beta08/nlog.4.5.0-beta08.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc01.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc01.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc01/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc01/nlog.4.5.0-rc01.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc01"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc01/nlog.4.5.0-rc01.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc02.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.2.2, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc02.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc02/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc02/nlog.4.5.0-rc02.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc02"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc02/nlog.4.5.0-rc02.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc03.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski, Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.2.2, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.57/nlog.4.5.0-rc03.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc03/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc03/nlog.4.5.0-rc03.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc03"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc03/nlog.4.5.0-rc03.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc04.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.2.2, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc04.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc04/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc04/nlog.4.5.0-rc04.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc04"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc04/nlog.4.5.0-rc04.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc05.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.2.2, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc05.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc05/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc05/nlog.4.5.0-rc05.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc05"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc05/nlog.4.5.0-rc05.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc06.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/microsoft.netcore.universalwindowsplatform",
+                "@type": "PackageDependency",
+                "id": "Microsoft.NETCore.UniversalWindowsPlatform",
+                "range": "[5.2.2, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.netcore.universalwindowsplatform/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/system.runtime.interopservices.runtimeinformation",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.InteropServices.RuntimeInformation",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc06.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc06/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc06/nlog.4.5.0-rc06.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc06"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc06/nlog.4.5.0-rc06.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0-rc07.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.45.18/nlog.4.5.0-rc07.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc07/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc07/nlog.4.5.0-rc07.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0-rc07"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0-rc07/nlog.4.5.0-rc07.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.0.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.0.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0/nlog.4.5.0.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-03-25T21:56:07.213+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.0/nlog.4.5.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.1.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.1.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.1/nlog.4.5.1.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-04-03T21:50:26.203+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.1/nlog.4.5.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.2.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.2.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.2/nlog.4.5.2.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-04-06T22:56:43.503+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.2/nlog.4.5.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.3.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.44.37/nlog.4.5.3.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.3/nlog.4.5.3.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-04-16T18:22:17.257+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.3/nlog.4.5.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.4.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.4.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.4/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.4/nlog.4.5.4.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-05-05T22:53:27.54+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.4/nlog.4.5.4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.5.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.59/nlog.4.5.5.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.5/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.5/nlog.4.5.5.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-05-25T16:30:46.667+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.5"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.5/nlog.4.5.5.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.6.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.6.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.6/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.6/nlog.4.5.6.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-05-29T21:25:14.857+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.6"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.6/nlog.4.5.6.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.7.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.7.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.7/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.7/nlog.4.5.7.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-07-19T09:39:06.83+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.7"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.7/nlog.4.5.7.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.8.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.52/nlog.4.5.8.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.8/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.8/nlog.4.5.8.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-08-05T11:38:58.573+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.8"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.8/nlog.4.5.8.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.9.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.24.21.45.39/nlog.4.5.9.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.9/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.9/nlog.4.5.9.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-08-24T21:40:39.07+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.9"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.9/nlog.4.5.9.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.10.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.09.17.22.06.47/nlog.4.5.10.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.10/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.10/nlog.4.5.10.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-09-17T21:58:18.61+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.10"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.10/nlog.4.5.10.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.5.11.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.11.06.17.35.37/nlog.4.5.11.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.11/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.11/nlog.4.5.11.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "2018-11-06T17:31:25.31+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.5.11"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.5.11/nlog.4.5.11.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.0-rc1.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc1.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6 & 4.7\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc1/nlog.4.6.0-rc1.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc1/nlog.4.6.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.0-rc2.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc2.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc2/nlog.4.6.0-rc2.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.0-rc2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc2/nlog.4.6.0-rc2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    }
+  ],
+  "parent": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json",
+  "lower": "4.4.0-beta6",
+  "upper": "4.6.0-rc2",
+  "@context": {
+    "@vocab": "http://schema.nuget.org/schema#",
+    "catalog": "http://schema.nuget.org/catalog#",
+    "xsd": "http://www.w3.org/2001/XMLSchema#",
+    "items": {
+      "@id": "catalog:item",
+      "@container": "@set"
+    },
+    "commitTimeStamp": {
+      "@id": "catalog:commitTimeStamp",
+      "@type": "xsd:dateTime"
+    },
+    "commitId": {
+      "@id": "catalog:commitId"
+    },
+    "count": {
+      "@id": "catalog:count"
+    },
+    "parent": {
+      "@id": "catalog:parent",
+      "@type": "@id"
+    },
+    "tags": {
+      "@id": "tag",
+      "@container": "@set"
+    },
+    "reasons": {
+      "@container": "@set"
+    },
+    "packageTargetFrameworks": {
+      "@id": "packageTargetFramework",
+      "@container": "@set"
+    },
+    "dependencyGroups": {
+      "@id": "dependencyGroup",
+      "@container": "@set"
+    },
+    "dependencies": {
+      "@id": "dependency",
+      "@container": "@set"
+    },
+    "packageContent": {
+      "@type": "@id"
+    },
+    "published": {
+      "@type": "xsd:dateTime"
+    },
+    "registration": {
+      "@type": "@id"
+    }
+  }
+}
diff --git a/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_3.json b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_3.json
new file mode 100644
index 0000000000000000000000000000000000000000..9c46cd5a9bcac77494e831a8c640df490f18d67e
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nlog/v3_catalog_3.json
@@ -0,0 +1,9819 @@
+{
+  "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.6.0-rc3/5.0.0-beta11.json",
+  "@type": "catalog:CatalogPage",
+  "commitId": "1ecce4df-d77c-414d-8c2d-0f39eeeab278",
+  "commitTimeStamp": "2020-07-31T22:23:20.8406554+00:00",
+  "count": 28,
+  "items": [
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.0-rc3.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.01.22.52.07/nlog.4.6.0-rc3.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.Asp.NET Core",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc3/nlog.4.6.0-rc3.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.0-rc3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0-rc3/nlog.4.6.0-rc3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.0.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.21.00.31.59/nlog.4.6.0.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.Asp.NET Core",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0/nlog.4.6.0.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-03-21T00:27:35.483+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.0/nlog.4.6.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.1.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.03.29.23.27.59/nlog.4.6.1.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.1/nlog.4.6.1.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-03-29T23:23:40.613+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.1/nlog.4.6.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.2.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.02.22.57.09/nlog.4.6.2.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.2/nlog.4.6.2.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-04-02T22:53:01.02+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.2/nlog.4.6.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.3.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.04.30.20.16.42/nlog.4.6.3.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.3/nlog.4.6.3.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-04-30T20:12:12.64+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.3/nlog.4.6.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.4.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.28.21.09.12/nlog.4.6.4.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.4/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.4/nlog.4.6.4.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-05-28T21:04:44.207+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.4"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.4/nlog.4.6.4.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.5.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.06.14.00.24.49/nlog.4.6.5.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.5/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.5/nlog.4.6.5.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-06-14T00:20:11.71+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.5"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.5/nlog.4.6.5.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.6.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.07.14.21.38.02/nlog.4.6.6.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.6/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.6/nlog.4.6.6.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-07-14T21:33:26.327+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.6"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.6/nlog.4.6.6.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.7.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.25.19.27.23/nlog.4.6.7.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.7/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.7/nlog.4.6.7.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-08-25T19:22:57.47+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.7"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.7/nlog.4.6.7.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.6.8.json",
+      "@type": "Package",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.11.04.21.37.20/nlog.4.6.8.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.8/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.8/nlog.4.6.8.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2019-11-04T21:35:02.22+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.6.8"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.6.8/nlog.4.6.8.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.7.0-rc1.json",
+      "@type": "Package",
+      "commitId": "276c8733-7925-4b0c-ac35-30c5e909ff3f",
+      "commitTimeStamp": "2020-04-14T21:21:14.0676095+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.04.14.21.20.39/nlog.4.7.0-rc1.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0-rc1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0-rc1/nlog.4.7.0-rc1.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.7.0-rc1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0-rc1/nlog.4.7.0-rc1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.7.0.json",
+      "@type": "Package",
+      "commitId": "0ae68f2f-4bde-459c-a092-d3ec17638a9d",
+      "commitTimeStamp": "2020-03-20T17:13:16.9005166+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.03.20.17.12.43/nlog.4.7.0.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0/nlog.4.7.0.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2020-03-20T17:10:34.303+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.7.0"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.0/nlog.4.7.0.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.7.1.json",
+      "@type": "Package",
+      "commitId": "59e28ae3-0d09-4a83-bef8-c63b9a7b8aa8",
+      "commitTimeStamp": "2020-05-15T14:50:59.4997947+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.15.14.50.32/nlog.4.7.1.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.1/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.1/nlog.4.7.1.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2020-05-15T14:48:03.62+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.7.1"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.1/nlog.4.7.1.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.7.2.json",
+      "@type": "Package",
+      "commitId": "103c21dc-6c02-438e-a485-069dd4bc1b1d",
+      "commitTimeStamp": "2020-05-18T20:49:21.7245692+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.05.18.20.48.39/nlog.4.7.2.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.2/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.2/nlog.4.7.2.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2020-05-18T20:46:15.073+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.7.2"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.2/nlog.4.7.2.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/4.7.3.json",
+      "@type": "Package",
+      "commitId": "1ecce4df-d77c-414d-8c2d-0f39eeeab278",
+      "commitTimeStamp": "2020-07-31T22:23:20.8406554+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json",
+        "@type": "PackageDetails",
+        "authors": "Jarek Kowalski,Kim Christensen,Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netframework4.0-client",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0-Client"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.componentmodel.primitives",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.Primitives",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/monoandroid4.4",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid4.4"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.31.22.23.01/nlog.4.7.3.json#dependencygroup/.netstandard2.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETStandard2.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities.\nNLog supports traditional logging, structured logging and the combination of both.\n\nSupported platforms:\n\n- .NET Framework 3.5, 4, 4.5, 4.6, 4.7 & 4.8\n- .NET Standard 1.3+ and 2.0+;\n- .NET Framework 4 client profile\n- Xamarin Android, Xamarin iOs\n- UWP\n- Windows Phone 8\n- Silverlight 4 and 5\n- Mono 4\n\nFor ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.3/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "https://github.com/NLog/NLog/blob/master/LICENSE.txt",
+        "listed": true,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.3/nlog.4.7.3.nupkg",
+        "projectUrl": "https://nlog-project.org/",
+        "published": "2020-07-31T22:20:36.847+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "",
+        "tags": [
+          "NLog",
+          "logging",
+          "log",
+          "structured",
+          "tracing",
+          "logfiles",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "console"
+        ],
+        "title": "NLog for .NET Framework and .NET Standard",
+        "version": "4.7.3"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.3/nlog.4.7.3.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta01.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta01.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta01/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta01/nlog.5.0.0-beta01.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta01"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta01/nlog.5.0.0-beta01.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta02.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.43.13/nlog.5.0.0-beta02.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta02/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta02/nlog.5.0.0-beta02.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta02"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta02/nlog.5.0.0-beta02.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta03.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.59/nlog.5.0.0-beta03.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03/nlog.5.0.0-beta03.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta03"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03/nlog.5.0.0-beta03.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta03-tryoutmutex.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json",
+        "@type": "PackageDetails",
+        "authors": "Kim Christensen, Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.47/nlog.5.0.0-beta03-tryoutmutex.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03-tryoutmutex/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03-tryoutmutex/nlog.5.0.0-beta03-tryoutmutex.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta03-tryoutMutex"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta03-tryoutmutex/nlog.5.0.0-beta03-tryoutmutex.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta04.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.37/nlog.5.0.0-beta04.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta04/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta04/nlog.5.0.0-beta04.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta04"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta04/nlog.5.0.0-beta04.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta05.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.31/nlog.5.0.0-beta05.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05/nlog.5.0.0-beta05.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta05"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05/nlog.5.0.0-beta05.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta05-test.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta05-test.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05-test/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05-test/nlog.5.0.0-beta05-test.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta05-test"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta05-test/nlog.5.0.0-beta05-test.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta06.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.3.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta06.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta06/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta06/nlog.5.0.0-beta06.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta06"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta06/nlog.5.0.0-beta06.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta07.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.componentmodel",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.42.24/nlog.5.0.0-beta07.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta07/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta07/nlog.5.0.0-beta07.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta07"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta07/nlog.5.0.0-beta07.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta08.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.componentmodel",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.43/nlog.5.0.0-beta08.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta08/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta08/nlog.5.0.0-beta08.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta08"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta08/nlog.5.0.0-beta08.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta09.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.3/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.io.filesystem.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.security.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Security.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.accesscontrol/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/.netstandard1.5/system.threading.accesscontrol",
+                "@type": "PackageDependency",
+                "id": "System.Threading.AccessControl",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.accesscontrol/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.componentmodel",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.37/nlog.5.0.0-beta09.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta09/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta09/nlog.5.0.0-beta09.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta09"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta09/nlog.5.0.0-beta09.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta10.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.3/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/.netstandard1.5/system.security.principal.windows",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal.Windows",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.componentmodel",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta10.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta10/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta10/nlog.5.0.0-beta10.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta10"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta10/nlog.5.0.0-beta10.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/5.0.0-beta11.json",
+      "@type": "Package",
+      "commitId": "341953e1-583a-470d-a525-c99175e31274",
+      "commitTimeStamp": "2020-02-07T22:39:59.976067+00:00",
+      "catalogEntry": {
+        "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json",
+        "@type": "PackageDetails",
+        "authors": "Julian Verdurmen",
+        "dependencyGroups": [
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netframework3.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework3.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netframework4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netframework4.5",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": ".NETFramework4.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.3/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/microsoft.extensions.platformabstractions",
+                "@type": "PackageDependency",
+                "id": "Microsoft.Extensions.PlatformAbstractions",
+                "range": "[1.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.platformabstractions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.diagnostics.process",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Process",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.process/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.diagnostics.tracesource",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.TraceSource",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.tracesource/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.io.filesystem.watcher",
+                "@type": "PackageDependency",
+                "id": "System.IO.FileSystem.Watcher",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.watcher/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.runtime.loader",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Loader",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.threading.thread",
+                "@type": "PackageDependency",
+                "id": "System.Threading.Thread",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.threading.threadpool",
+                "@type": "PackageDependency",
+                "id": "System.Threading.ThreadPool",
+                "range": "[4.0.10, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.threadpool/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/.netstandard1.5/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              }
+            ],
+            "targetFramework": ".NETStandard1.5"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/monoandroid2.3",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "MonoAndroid2.3"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/silverlight4.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight4.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/silverlight5.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Silverlight5.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0",
+            "@type": "PackageDependencyGroup",
+            "dependencies": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/netstandard.library",
+                "@type": "PackageDependency",
+                "id": "NETStandard.Library",
+                "range": "[1.6.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.collections.nongeneric",
+                "@type": "PackageDependency",
+                "id": "System.Collections.NonGeneric",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.collections.nongeneric/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.componentmodel",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.componentmodel.typeconverter",
+                "@type": "PackageDependency",
+                "id": "System.ComponentModel.TypeConverter",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.data.common",
+                "@type": "PackageDependency",
+                "id": "System.Data.Common",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.data.common/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.diagnostics.contracts",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.Contracts",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.contracts/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.diagnostics.stacktrace",
+                "@type": "PackageDependency",
+                "id": "System.Diagnostics.StackTrace",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.stacktrace/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.net.nameresolution",
+                "@type": "PackageDependency",
+                "id": "System.Net.NameResolution",
+                "range": "[4.0.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.nameresolution/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.net.requests",
+                "@type": "PackageDependency",
+                "id": "System.Net.Requests",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.net.requests/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.reflection.typeextensions",
+                "@type": "PackageDependency",
+                "id": "System.Reflection.TypeExtensions",
+                "range": "[4.1.0, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.runtime.serialization.primitives",
+                "@type": "PackageDependency",
+                "id": "System.Runtime.Serialization.Primitives",
+                "range": "[4.1.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.security.principal",
+                "@type": "PackageDependency",
+                "id": "System.Security.Principal",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.security.principal/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.threading",
+                "@type": "PackageDependency",
+                "id": "System.Threading",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.xml.readerwriter",
+                "@type": "PackageDependency",
+                "id": "System.Xml.ReaderWriter",
+                "range": "[4.0.11, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/uap10.0/system.xml.xmldocument",
+                "@type": "PackageDependency",
+                "id": "System.Xml.XmlDocument",
+                "range": "[4.0.1, )",
+                "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json"
+              }
+            ],
+            "targetFramework": "UAP10.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/windowsphone8.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "WindowsPhone8.0"
+          },
+          {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.15.05.41.30/nlog.5.0.0-beta11.json#dependencygroup/xamarin.ios1.0",
+            "@type": "PackageDependencyGroup",
+            "targetFramework": "Xamarin.iOS1.0"
+          }
+        ],
+        "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+        "iconUrl": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta11/icon",
+        "id": "NLog",
+        "language": "",
+        "licenseExpression": "",
+        "licenseUrl": "http://raw.github.com/NLog/NLog/master/LICENSE.txt",
+        "listed": false,
+        "minClientVersion": "",
+        "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta11/nlog.5.0.0-beta11.nupkg",
+        "projectUrl": "http://nlog-project.org/",
+        "published": "1900-01-01T00:00:00+00:00",
+        "requireLicenseAcceptance": false,
+        "summary": "NLog - Flexible & free open-source logging for .NET",
+        "tags": [
+          "logging",
+          "log",
+          "tracing",
+          "logfiles",
+          "NLog",
+          "database",
+          "eventlog",
+          "email",
+          "wcf",
+          "netcore",
+          "dynamic"
+        ],
+        "title": "",
+        "version": "5.0.0-beta11"
+      },
+      "packageContent": "https://api.nuget.org/v3-flatcontainer/nlog/5.0.0-beta11/nlog.5.0.0-beta11.nupkg",
+      "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json"
+    }
+  ],
+  "parent": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json",
+  "lower": "4.6.0-rc3",
+  "upper": "5.0.0-beta11",
+  "@context": {
+    "@vocab": "http://schema.nuget.org/schema#",
+    "catalog": "http://schema.nuget.org/catalog#",
+    "xsd": "http://www.w3.org/2001/XMLSchema#",
+    "items": {
+      "@id": "catalog:item",
+      "@container": "@set"
+    },
+    "commitTimeStamp": {
+      "@id": "catalog:commitTimeStamp",
+      "@type": "xsd:dateTime"
+    },
+    "commitId": {
+      "@id": "catalog:commitId"
+    },
+    "count": {
+      "@id": "catalog:count"
+    },
+    "parent": {
+      "@id": "catalog:parent",
+      "@type": "@id"
+    },
+    "tags": {
+      "@id": "tag",
+      "@container": "@set"
+    },
+    "reasons": {
+      "@container": "@set"
+    },
+    "packageTargetFrameworks": {
+      "@id": "packageTargetFramework",
+      "@container": "@set"
+    },
+    "dependencyGroups": {
+      "@id": "dependencyGroup",
+      "@container": "@set"
+    },
+    "dependencies": {
+      "@id": "dependency",
+      "@container": "@set"
+    },
+    "packageContent": {
+      "@type": "@id"
+    },
+    "published": {
+      "@type": "xsd:dateTime"
+    },
+    "registration": {
+      "@type": "@id"
+    }
+  }
+}
diff --git a/lib/datasource/nuget/__fixtures__/nlog/v3_registration.json b/lib/datasource/nuget/__fixtures__/nlog/v3_registration.json
new file mode 100644
index 0000000000000000000000000000000000000000..b5158d10575b5a5bd2aa60d435d0c51d54a05402
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nlog/v3_registration.json
@@ -0,0 +1,91 @@
+{
+  "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json",
+  "@type": [
+    "catalog:CatalogRoot",
+    "PackageRegistration",
+    "catalog:Permalink"
+  ],
+  "commitId": "1ecce4df-d77c-414d-8c2d-0f39eeeab278",
+  "commitTimeStamp": "2020-07-31T22:23:20.8406554+00:00",
+  "count": 3,
+  "items": [
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/1.0.0.505/4.4.0-beta5.json",
+      "@type": "catalog:CatalogPage",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "count": 64,
+      "lower": "1.0.0.505",
+      "upper": "4.4.0-beta5"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.4.0-beta6/4.6.0-rc2.json",
+      "@type": "catalog:CatalogPage",
+      "commitId": "008a216c-5f6c-48c7-94c8-d48217e028bb",
+      "commitTimeStamp": "2020-02-07T22:40:40.4993259+00:00",
+      "count": 64,
+      "lower": "4.4.0-beta6",
+      "upper": "4.6.0-rc2"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.6.0-rc3/5.0.0-beta11.json",
+      "@type": "catalog:CatalogPage",
+      "commitId": "1ecce4df-d77c-414d-8c2d-0f39eeeab278",
+      "commitTimeStamp": "2020-07-31T22:23:20.8406554+00:00",
+      "count": 28,
+      "lower": "4.6.0-rc3",
+      "upper": "5.0.0-beta11"
+    }
+  ],
+  "@context": {
+    "@vocab": "http://schema.nuget.org/schema#",
+    "catalog": "http://schema.nuget.org/catalog#",
+    "xsd": "http://www.w3.org/2001/XMLSchema#",
+    "items": {
+      "@id": "catalog:item",
+      "@container": "@set"
+    },
+    "commitTimeStamp": {
+      "@id": "catalog:commitTimeStamp",
+      "@type": "xsd:dateTime"
+    },
+    "commitId": {
+      "@id": "catalog:commitId"
+    },
+    "count": {
+      "@id": "catalog:count"
+    },
+    "parent": {
+      "@id": "catalog:parent",
+      "@type": "@id"
+    },
+    "tags": {
+      "@id": "tag",
+      "@container": "@set"
+    },
+    "reasons": {
+      "@container": "@set"
+    },
+    "packageTargetFrameworks": {
+      "@id": "packageTargetFramework",
+      "@container": "@set"
+    },
+    "dependencyGroups": {
+      "@id": "dependencyGroup",
+      "@container": "@set"
+    },
+    "dependencies": {
+      "@id": "dependency",
+      "@container": "@set"
+    },
+    "packageContent": {
+      "@type": "@id"
+    },
+    "published": {
+      "@type": "xsd:dateTime"
+    },
+    "registration": {
+      "@type": "@id"
+    }
+  }
+}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2.xml b/lib/datasource/nuget/__fixtures__/nunit/v2.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2_noGitHubProjectUrl.xml b/lib/datasource/nuget/__fixtures__/nunit/v2_noGitHubProjectUrl.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2_noGitHubProjectUrl.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2_noGitHubProjectUrl.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2_no_release.xml b/lib/datasource/nuget/__fixtures__/nunit/v2_no_release.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2_no_release.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2_no_release.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2_paginated_1.xml b/lib/datasource/nuget/__fixtures__/nunit/v2_paginated_1.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2_paginated_1.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2_paginated_1.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2_paginated_2.xml b/lib/datasource/nuget/__fixtures__/nunit/v2_paginated_2.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2_paginated_2.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2_paginated_2.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2_withoutProjectUrl.xml b/lib/datasource/nuget/__fixtures__/nunit/v2_withoutProjectUrl.xml
similarity index 100%
rename from lib/datasource/nuget/__fixtures__/nunitV2_withoutProjectUrl.xml
rename to lib/datasource/nuget/__fixtures__/nunit/v2_withoutProjectUrl.xml
diff --git a/lib/datasource/nuget/__fixtures__/nunit/v3_nuget_org.xml b/lib/datasource/nuget/__fixtures__/nunit/v3_nuget_org.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2eb648c14b9abe16a5ae1fc6722c33f9d9cb5fe9
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nunit/v3_nuget_org.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
+  <metadata minClientVersion="2.12">
+    <id>NUnit</id>
+    <version>3.12.0</version>
+    <title>NUnit</title>
+    <authors>Charlie Poole, Rob Prouse</authors>
+    <owners>Charlie Poole, Rob Prouse</owners>
+    <requireLicenseAcceptance>false</requireLicenseAcceptance>
+    <license type="file">LICENSE.txt</license>
+    <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
+    <projectUrl>https://nunit.org/</projectUrl>
+    <iconUrl>https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
+    <description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.
+
+      This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install
+      version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests.
+      Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.
+
+      Supported platforms:
+      - .NET Framework 3.5+
+      - .NET Standard 1.4+
+      - .NET Core
+    </description>
+    <summary>NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.</summary>
+    <releaseNotes>This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need
+      to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to
+      execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.
+    </releaseNotes>
+    <copyright>Copyright (c) 2019 Charlie Poole, Rob Prouse</copyright>
+    <language>en-US</language>
+    <tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
+    <repository type="git" url="https://github.com/nunit/nunit"/>
+    <dependencies>
+      <group targetFramework=".NETFramework3.5"/>
+      <group targetFramework=".NETFramework4.0"/>
+      <group targetFramework=".NETFramework4.5"/>
+      <group targetFramework=".NETStandard1.4">
+        <dependency id="NETStandard.Library" version="1.6.1"/>
+        <dependency id="System.ComponentModel.TypeConverter" version="4.3.0"/>
+        <dependency id="System.Reflection.TypeExtensions" version="4.4.0" exclude="compile"/>
+      </group>
+      <group targetFramework=".NETStandard2.0">
+        <dependency id="NETStandard.Library" version="2.0.0"/>
+      </group>
+    </dependencies>
+  </metadata>
+</package>
diff --git a/lib/datasource/nuget/__fixtures__/nunit/v3_registration.json b/lib/datasource/nuget/__fixtures__/nunit/v3_registration.json
new file mode 100644
index 0000000000000000000000000000000000000000..d78a7d601ea1163b8007ef201e684ce2831a5435
--- /dev/null
+++ b/lib/datasource/nuget/__fixtures__/nunit/v3_registration.json
@@ -0,0 +1,2714 @@
+{
+  "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
+  "@type": [
+    "catalog:CatalogRoot",
+    "PackageRegistration",
+    "catalog:Permalink"
+  ],
+  "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+  "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+  "count": 1,
+  "items": [
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json#page/2.5.7.10213/3.12.0",
+      "@type": "catalog:CatalogPage",
+      "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+      "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+      "count": 45,
+      "items": [
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.5.7.10213.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.04.27/nunit.2.5.7.10213.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "iconUrl": "",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.7.10213/nunit.2.5.7.10213.nupkg",
+            "projectUrl": "",
+            "published": "2011-01-07T07:57:55.387+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "tags": [
+              ""
+            ],
+            "title": "",
+            "version": "2.5.7.10213"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.7.10213/nunit.2.5.7.10213.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.5.9.10348.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.04.20/nunit.2.5.9.10348.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "iconUrl": "",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.9.10348/nunit.2.5.9.10348.nupkg",
+            "projectUrl": "",
+            "published": "2011-02-09T07:26:34.347+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "tags": [
+              ""
+            ],
+            "title": "",
+            "version": "2.5.9.10348"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.9.10348/nunit.2.5.9.10348.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.5.10.11092.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.04.13/nunit.2.5.10.11092.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "iconUrl": "",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.10.11092/nunit.2.5.10.11092.nupkg",
+            "projectUrl": "",
+            "published": "2011-04-25T20:20:34.397+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 2.5, is the sixth major release of this xUnit based unit testing tool for Microsoft .NET.",
+            "tags": [
+              ""
+            ],
+            "title": "",
+            "version": "2.5.10.11092"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.5.10.11092/nunit.2.5.10.11092.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.0.12051.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.04.06/nunit.2.6.0.12051.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12051/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": false,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12051/nunit.2.6.0.12051.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "1900-01-01T00:00:00+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.0.12051"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12051/nunit.2.6.0.12051.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.0.12054.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.59/nunit.2.6.0.12054.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12054/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12054/nunit.2.6.0.12054.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2012-02-24T04:03:05.29+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.0.12054"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.0.12054/nunit.2.6.0.12054.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.59/nunit.2.6.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.1/nunit.2.6.1.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2012-08-05T03:08:28.403+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.1/nunit.2.6.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.2.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.59/nunit.2.6.2.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.2/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.2/nunit.2.6.2.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2012-10-23T15:37:48+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.2"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.2/nunit.2.6.2.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.3.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.21/nunit.2.6.3.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.3/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.3/nunit.2.6.3.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2013-10-11T01:52:53.417+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.3"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.3/nunit.2.6.3.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.4.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.14/nunit.2.6.4.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.4/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.4/nunit.2.6.4.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2014-12-17T17:30:47.607+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.4"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.4/nunit.2.6.4.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.5.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.2.6.5.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.5/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.5/nunit.2.6.5.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2018-04-20T04:23:59.217+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.5"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.5/nunit.2.6.5.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.6.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.2.6.6.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.6/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunitsoftware.com/nunitv2/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.6/nunit.2.6.6.nupkg",
+            "projectUrl": "http://nunitsoftware.com/nunitv2",
+            "published": "2018-06-07T15:24:16.807+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.6"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.6/nunit.2.6.6.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.6.7.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.59/nunit.2.6.7.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.7/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunitsoftware.com/nunitv2/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.7/nunit.2.6.7.nupkg",
+            "projectUrl": "http://nunitsoftware.com/nunitv2",
+            "published": "2018-07-07T15:41:32.657+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.6.7"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.6.7/nunit.2.6.7.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.7.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.08.10.20.51.54/nunit.2.7.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunitsoftware.com/nunitv2/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.0/nunit.2.7.0.nupkg",
+            "projectUrl": "http://nunitsoftware.com/nunitv2",
+            "published": "2018-08-10T20:45:24.08+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.7.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.0/nunit.2.7.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/2.7.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.08.21.07.13.24/nunit.2.7.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nVersion 2.6 is the seventh major release of this well-known and well-tested programming tool.\n\nThis package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunitsoftware.com/nunitv2/nuget/license.html",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.1/nunit.2.7.1.nupkg",
+            "projectUrl": "http://nunitsoftware.com/nunitv2",
+            "published": "2019-08-21T07:08:49.36+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "2.7.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/2.7.1/nunit.2.7.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-alpha.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.3.0.0-alpha.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.3.0.0-alpha.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.3.0.0-alpha.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.03.07/nunit.3.0.0-alpha.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha/nunit.3.0.0-alpha.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2014-09-23T03:11:33.43+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-alpha"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha/nunit.3.0.0-alpha.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-alpha-2.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.29/nunit.3.0.0-alpha-2.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.29/nunit.3.0.0-alpha-2.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.29/nunit.3.0.0-alpha-2.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.29/nunit.3.0.0-alpha-2.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-2/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-2/nunit.3.0.0-alpha-2.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2014-11-03T06:24:59.217+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-alpha-2"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-2/nunit.3.0.0-alpha-2.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-alpha-3.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.13/nunit.3.0.0-alpha-3.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.13/nunit.3.0.0-alpha-3.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.13/nunit.3.0.0-alpha-3.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.13/nunit.3.0.0-alpha-3.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-3/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-3/nunit.3.0.0-alpha-3.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2014-11-29T22:38:18.493+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-alpha-3"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-3/nunit.3.0.0-alpha-3.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-alpha-4.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.05/nunit.3.0.0-alpha-4.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.05/nunit.3.0.0-alpha-4.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.05/nunit.3.0.0-alpha-4.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.02.05/nunit.3.0.0-alpha-4.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-4/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-4/nunit.3.0.0-alpha-4.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2014-12-31T04:47:39.507+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-alpha-4"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-4/nunit.3.0.0-alpha-4.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-alpha-5.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.58/nunit.3.0.0-alpha-5.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.58/nunit.3.0.0-alpha-5.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.58/nunit.3.0.0-alpha-5.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.58/nunit.3.0.0-alpha-5.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-5/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-5/nunit.3.0.0-alpha-5.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-01-31T22:13:01.997+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-alpha-5"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-alpha-5/nunit.3.0.0-alpha-5.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-beta-1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.51/nunit.3.0.0-beta-1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.51/nunit.3.0.0-beta-1.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.51/nunit.3.0.0-beta-1.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.51/nunit.3.0.0-beta-1.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\n\nThis is an alpha release and is not intended for production use.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-1/nunit.3.0.0-beta-1.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-03-26T11:33:22.173+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-beta-1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-1/nunit.3.0.0-beta-1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-beta-2.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.44/nunit.3.0.0-beta-2.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.44/nunit.3.0.0-beta-2.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.44/nunit.3.0.0-beta-2.json#dependencygroup/.netframework4.0/microsoft.bcl.async",
+                    "@type": "PackageDependency",
+                    "id": "Microsoft.Bcl.Async",
+                    "range": "[1.0.165, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.bcl.async/index.json"
+                  }
+                ],
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.44/nunit.3.0.0-beta-2.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nThis is an beta release, but is ready for production use for people with prior NUnit experience.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-2/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-2/nunit.3.0.0-beta-2.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-05-13T00:51:22.43+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-beta-2"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-2/nunit.3.0.0-beta-2.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-beta-3.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.37/nunit.3.0.0-beta-3.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nThis is an beta release, but is ready for production use for people with prior NUnit experience.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-3/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-3/nunit.3.0.0-beta-3.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-07-15T23:44:47.403+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-beta-3"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-3/nunit.3.0.0-beta-3.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-beta-4.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.00.10/nunit.3.0.0-beta-4.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nThis is an beta release, but is ready for production use for people with prior NUnit experience.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-4/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-4/nunit.3.0.0-beta-4.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-08-25T23:24:11.473+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-beta-4"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-4/nunit.3.0.0-beta-4.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-beta-5.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.00.10/nunit.3.0.0-beta-5.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nThis is an beta release, but is ready for production use for people with prior NUnit experience.",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-5/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-5/nunit.3.0.0-beta-5.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-10-17T03:39:18.1+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-beta-5"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-beta-5/nunit.3.0.0-beta-5.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-rc.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.59.32/nunit.3.0.0-rc.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc/nunit.3.0.0-rc.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-11-01T21:56:49.637+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-rc"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc/nunit.3.0.0-rc.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-rc-2.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.01.25/nunit.3.0.0-rc-2.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-2/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-2/nunit.3.0.0-rc-2.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-11-08T16:27:15.11+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-rc-2"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-2/nunit.3.0.0-rc-2.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0-rc-3.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.00.10/nunit.3.0.0-rc-3.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-3/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-3/nunit.3.0.0-rc-3.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-11-14T05:30:57.323+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Version 3",
+            "version": "3.0.0-rc-3"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0-rc-3/nunit.3.0.0-rc-3.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.13.09.47/nunit.3.0.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0/nunit.3.0.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2015-11-16T00:02:51.807+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit Framework",
+            "version": "3.0.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.0/nunit.3.0.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.0.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.59.24/nunit.3.0.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.1/nunit.3.0.1.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2015-12-02T03:52:57.997+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.0.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.0.1/nunit.3.0.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.2.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.41/nunit.3.2.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.0/nunit.3.2.0.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2016-03-05T21:12:58.99+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.2.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.0/nunit.3.2.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.2.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.41/nunit.3.2.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.1/nunit.3.2.1.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2016-04-19T15:31:13.39+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.2.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.2.1/nunit.3.2.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.4.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.4.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.0/nunit.3.4.0.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2016-06-25T17:44:56.253+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.4.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.0/nunit.3.4.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.4.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.4.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.1/nunit.3.4.1.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2016-06-30T21:20:49.497+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.4.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.4.1/nunit.3.4.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.5.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.5.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Core (Universal Windows Apps 10+, DNX Core 5+)\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.5.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.5.0/nunit.3.5.0.nupkg",
+            "projectUrl": "http://nunit.org",
+            "published": "2016-10-04T01:19:19.447+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.5.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.5.0/nunit.3.5.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.6.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.0.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.0.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.0.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Standard 1.6\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.0/nunit.3.6.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-01-10T02:17:19.187+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.6.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.0/nunit.3.6.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.6.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.1.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.1.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.58.19/nunit.3.6.1.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3.0 framework assembly, which is referenced by your tests. You will need to install version 3.0 of the nunit3-console program or a third-party runner that supports NUnit 3.0 in order to execute tests. Runners intended for use with NUnit 2.x will not run 3.0 tests correctly.\n\nSupported platforms:\n  - .NET 2.0+\n  - .NET Standard 1.6\n  - Windows 8\n  - Windows Phone 8 (Silverlight)\n  - Universal (Windows Phone 8.1+, Windows 8.1+)\n  - Xamarin (MonoTouch, MonoAndroid, Xamarin iOS Universal)\n  - Portable Libraries (supporting Profile259)",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.1/nunit.3.6.1.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-02-26T14:56:04.407+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.6.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.6.1/nunit.3.6.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.7.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.3",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.3"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.0.json#dependencygroup/.netstandard1.6/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET 2.0+\n- .NET Standard 1.3 and 1.6\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.0/nunit.3.7.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-05-30T00:07:36.707+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.7.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.0/nunit.3.7.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.7.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.3",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.3/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.3"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.7.1.json#dependencygroup/.netstandard1.6/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET 2.0+\n- .NET Standard 1.3 and 1.6\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.1/nunit.3.7.1.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-06-06T01:59:11.787+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.7.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.7.1/nunit.3.7.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.8.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/xamarin.ios0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/xamarin.ios0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "Xamarin.iOS0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/monoandroid0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/monoandroid0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "MonoAndroid0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/uap0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/uap0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "UAP0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.3",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.3"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.0.json#dependencygroup/.netstandard1.6/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET 2.0+\n- .NET Standard 1.3 and 1.6\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.0/nunit.3.8.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-08-28T00:08:29.5+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.8.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.0/nunit.3.8.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.8.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/xamarin.ios0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/xamarin.ios0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "Xamarin.iOS0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/monoandroid0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/monoandroid0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "MonoAndroid0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/uap0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/uap0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "UAP0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.3",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.3/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.3"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.39/nunit.3.8.1.json#dependencygroup/.netstandard1.6/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET 2.0+\n- .NET Standard 1.3 and 1.6\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.1/nunit.3.8.1.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-08-29T01:11:58.86+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.8.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.8.1/nunit.3.8.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.9.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/xamarin.ios0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/xamarin.ios0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "Xamarin.iOS0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/monoandroid0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/monoandroid0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "MonoAndroid0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/uap0.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/uap0.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": "UAP0.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.3",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.3/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.3"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.6/system.runtime.loader",
+                    "@type": "PackageDependency",
+                    "id": "System.Runtime.Loader",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.57.01/nunit.3.9.0.json#dependencygroup/.netstandard1.6/system.threading.thread",
+                    "@type": "PackageDependency",
+                    "id": "System.Threading.Thread",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.threading.thread/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET 2.0+\n- .NET Standard 1.3 and 1.6\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.9.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "http://nunit.org/nuget/nunit3-license.txt",
+            "listed": true,
+            "minClientVersion": "",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.9.0/nunit.3.9.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2017-11-10T23:35:19.67+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.9.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.9.0/nunit.3.9.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.10.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.1, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netstandard2.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.55/nunit.3.10.0.json#dependencygroup/.netstandard2.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[2.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard2.0"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.6+\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
+            "listed": true,
+            "minClientVersion": "2.12",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.0/nunit.3.10.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2018-03-13T00:29:56.4+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.10.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.0/nunit.3.10.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.10.1.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netstandard1.6",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netstandard1.6/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.1, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.6"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netstandard2.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.16.12.56.48/nunit.3.10.1.json#dependencygroup/.netstandard2.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[2.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard2.0"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.6+\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.1/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
+            "listed": true,
+            "minClientVersion": "2.12",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.1/nunit.3.10.1.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2018-03-13T03:13:09.93+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.10.1"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.10.1/nunit.3.10.1.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.11.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netframework2.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework2.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netstandard1.4",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netstandard1.4/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.1, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netstandard1.4/system.reflection.typeextensions",
+                    "@type": "PackageDependency",
+                    "id": "System.Reflection.TypeExtensions",
+                    "range": "[4.4.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.4"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netstandard2.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2018.10.07.01.22.14/nunit.3.11.0.json#dependencygroup/.netstandard2.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[2.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard2.0"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.4+\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.11.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
+            "listed": true,
+            "minClientVersion": "2.12",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.11.0/nunit.3.11.0.nupkg",
+            "projectUrl": "http://nunit.org/",
+            "published": "2018-10-07T01:17:31.31+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.11.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.11.0/nunit.3.11.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        },
+        {
+          "@id": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/3.12.0.json",
+          "@type": "Package",
+          "commitId": "9b827e25-a7c0-4840-a0f3-eb3f46b8ef29",
+          "commitTimeStamp": "2020-02-07T22:41:28.9136138+00:00",
+          "catalogEntry": {
+            "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json",
+            "@type": "PackageDetails",
+            "authors": "Charlie Poole, Rob Prouse",
+            "dependencyGroups": [
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netframework3.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework3.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netframework4.0",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.0"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netframework4.5",
+                "@type": "PackageDependencyGroup",
+                "targetFramework": ".NETFramework4.5"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard1.4",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard1.4/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[1.6.1, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard1.4/system.componentmodel.typeconverter",
+                    "@type": "PackageDependency",
+                    "id": "System.ComponentModel.TypeConverter",
+                    "range": "[4.3.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json"
+                  },
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard1.4/system.reflection.typeextensions",
+                    "@type": "PackageDependency",
+                    "id": "System.Reflection.TypeExtensions",
+                    "range": "[4.4.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.typeextensions/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard1.4"
+              },
+              {
+                "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard2.0",
+                "@type": "PackageDependencyGroup",
+                "dependencies": [
+                  {
+                    "@id": "https://api.nuget.org/v3/catalog0/data/2019.05.15.00.28.51/nunit.3.12.0.json#dependencygroup/.netstandard2.0/netstandard.library",
+                    "@type": "PackageDependency",
+                    "id": "NETStandard.Library",
+                    "range": "[2.0.0, )",
+                    "registration": "https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json"
+                  }
+                ],
+                "targetFramework": ".NETStandard2.0"
+              }
+            ],
+            "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 3.5+\n- .NET Standard 1.4+\n- .NET Core",
+            "iconUrl": "https://api.nuget.org/v3-flatcontainer/nunit/3.12.0/icon",
+            "id": "NUnit",
+            "language": "en-US",
+            "licenseExpression": "",
+            "licenseUrl": "https://www.nuget.org/packages/NUnit/3.12.0/license",
+            "listed": true,
+            "minClientVersion": "2.12",
+            "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.12.0/nunit.3.12.0.nupkg",
+            "projectUrl": "https://nunit.org/",
+            "published": "2019-05-15T00:24:28.39+00:00",
+            "requireLicenseAcceptance": false,
+            "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
+            "tags": [
+              "nunit",
+              "test",
+              "testing",
+              "tdd",
+              "framework",
+              "fluent",
+              "assert",
+              "theory",
+              "plugin",
+              "addin"
+            ],
+            "title": "NUnit",
+            "version": "3.12.0"
+          },
+          "packageContent": "https://api.nuget.org/v3-flatcontainer/nunit/3.12.0/nunit.3.12.0.nupkg",
+          "registration": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json"
+        }
+      ],
+      "parent": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
+      "lower": "2.5.7.10213",
+      "upper": "3.12.0"
+    }
+  ],
+  "@context": {
+    "@vocab": "http://schema.nuget.org/schema#",
+    "catalog": "http://schema.nuget.org/catalog#",
+    "xsd": "http://www.w3.org/2001/XMLSchema#",
+    "items": {
+      "@id": "catalog:item",
+      "@container": "@set"
+    },
+    "commitTimeStamp": {
+      "@id": "catalog:commitTimeStamp",
+      "@type": "xsd:dateTime"
+    },
+    "commitId": {
+      "@id": "catalog:commitId"
+    },
+    "count": {
+      "@id": "catalog:count"
+    },
+    "parent": {
+      "@id": "catalog:parent",
+      "@type": "@id"
+    },
+    "tags": {
+      "@id": "tag",
+      "@container": "@set"
+    },
+    "reasons": {
+      "@container": "@set"
+    },
+    "packageTargetFrameworks": {
+      "@id": "packageTargetFramework",
+      "@container": "@set"
+    },
+    "dependencyGroups": {
+      "@id": "dependencyGroup",
+      "@container": "@set"
+    },
+    "dependencies": {
+      "@id": "dependency",
+      "@container": "@set"
+    },
+    "packageContent": {
+      "@type": "@id"
+    },
+    "published": {
+      "@type": "xsd:dateTime"
+    },
+    "registration": {
+      "@type": "@id"
+    }
+  }
+}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV2.json b/lib/datasource/nuget/__fixtures__/nunitV2.json
deleted file mode 100644
index 9eb545f94f5fdbb0aed764402058000886c8f7f3..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitV2.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
-  "d": {
-    "results": [
-      { "Version": "2.5.7.10213" },
-      { "Version": "2.5.9.10348" },
-      { "Version": "2.5.10.11092" },
-      { "Version": "2.6.0.12051" },
-      { "Version": "2.6.0.12054" },
-      { "Version": "2.6.1" },
-      { "Version": "2.6.2" },
-      { "Version": "2.6.3" },
-      { "Version": "2.6.4" },
-      { "Version": "2.6.5" },
-      { "Version": "2.6.6" },
-      { "Version": "3.0.0-alpha" },
-      { "Version": "3.0.0-alpha-2" },
-      { "Version": "3.0.0-alpha-3" },
-      { "Version": "3.0.0-alpha-4" },
-      { "Version": "3.0.0-alpha-5" },
-      { "Version": "3.0.0-beta-1" },
-      { "Version": "3.0.0-beta-2" },
-      { "Version": "3.0.0-beta-3" },
-      { "Version": "3.0.0-beta-4" },
-      { "Version": "3.0.0-beta-5" },
-      { "Version": "3.0.0-rc" },
-      { "Version": "3.0.0-rc-2" },
-      { "Version": "3.0.0-rc-3" },
-      { "Version": "3.0.0" },
-      { "Version": "3.0.1" },
-      { "Version": "3.2.0" },
-      { "Version": "3.2.1" },
-      { "Version": "3.4.0" },
-      { "Version": "3.4.1" },
-      { "Version": "3.5.0" },
-      { "Version": "3.6.0" },
-      { "Version": "3.6.1" },
-      { "Version": "3.7.0" },
-      { "Version": "3.7.1" },
-      { "Version": "3.8.0" },
-      { "Version": "3.8.1" },
-      { "Version": "3.9.0" },
-      { "Version": "3.10.0" },
-      { "Version": "3.10.1" }
-    ]
-  }
-}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV3.json b/lib/datasource/nuget/__fixtures__/nunitV3.json
deleted file mode 100644
index faa9b650afbccfb8728737de27a3ab816f941f67..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitV3.json
+++ /dev/null
@@ -1,186 +0,0 @@
-{
-  "@context": {
-    "@vocab": "http://schema.nuget.org/schema#",
-    "@base": "https://api.nuget.org/v3/registration3/"
-  },
-  "totalHits": 1,
-  "lastReopen": "2019-02-04T10:47:54.6449537Z",
-  "index": "v3-lucene2-v2v3-20171018",
-  "data": [
-    {
-      "@id": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "@type": "Package",
-      "registration": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "id": "NUnit",
-      "version": "3.11.0",
-      "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.4+\n- .NET Core",
-      "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
-      "title": "NUnit",
-      "iconUrl": "https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png",
-      "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
-      "projectUrl": "https://github.com/nunit/nunit",
-      "tags": [
-        "nunit",
-        "test",
-        "testing",
-        "tdd",
-        "framework",
-        "fluent",
-        "assert",
-        "theory",
-        "plugin",
-        "addin"
-      ],
-      "authors": ["Charlie Poole, Rob Prouse"],
-      "totalDownloads": 34513003,
-      "verified": true,
-      "versions": [
-        {
-          "version": "2.5.7.10213",
-          "downloads": 120456,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.7.10213.json"
-        },
-        {
-          "version": "2.5.9.10348",
-          "downloads": 35430,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.9.10348.json"
-        },
-        {
-          "version": "2.5.10.11092",
-          "downloads": 398490,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.10.11092.json"
-        },
-        {
-          "version": "2.6.0.12054",
-          "downloads": 378279,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.0.12054.json"
-        },
-        {
-          "version": "2.6.1",
-          "downloads": 247167,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.1.json"
-        },
-        {
-          "version": "2.6.2",
-          "downloads": 1294687,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.2.json"
-        },
-        {
-          "version": "2.6.3",
-          "downloads": 2830278,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.3.json"
-        },
-        {
-          "version": "2.6.4",
-          "downloads": 5738258,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.4.json"
-        },
-        {
-          "version": "2.6.5",
-          "downloads": 23173,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.5.json"
-        },
-        {
-          "version": "2.6.6",
-          "downloads": 14324,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.6.json"
-        },
-        {
-          "version": "2.6.7",
-          "downloads": 24558,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.7.json"
-        },
-        {
-          "version": "2.7.0",
-          "downloads": 27939,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.7.0.json"
-        },
-        {
-          "version": "3.0.0",
-          "downloads": 342037,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.0.0.json"
-        },
-        {
-          "version": "3.0.1",
-          "downloads": 858272,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.0.1.json"
-        },
-        {
-          "version": "3.2.0",
-          "downloads": 529977,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.2.0.json"
-        },
-        {
-          "version": "3.2.1",
-          "downloads": 680526,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.2.1.json"
-        },
-        {
-          "version": "3.4.0",
-          "downloads": 103314,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.4.0.json"
-        },
-        {
-          "version": "3.4.1",
-          "downloads": 1237846,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.4.1.json"
-        },
-        {
-          "version": "3.5.0",
-          "downloads": 1682294,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.5.0.json"
-        },
-        {
-          "version": "3.6.0",
-          "downloads": 1089915,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.6.0.json"
-        },
-        {
-          "version": "3.6.1",
-          "downloads": 1967691,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.6.1.json"
-        },
-        {
-          "version": "3.7.0",
-          "downloads": 197893,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.7.0.json"
-        },
-        {
-          "version": "3.7.1",
-          "downloads": 1747106,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.7.1.json"
-        },
-        {
-          "version": "3.8.0",
-          "downloads": 87425,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.8.0.json"
-        },
-        {
-          "version": "3.8.1",
-          "downloads": 4326904,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.8.1.json"
-        },
-        {
-          "version": "3.9.0",
-          "downloads": 3224020,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.9.0.json"
-        },
-        {
-          "version": "3.10.0",
-          "downloads": 39849,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.10.0.json"
-        },
-        {
-          "version": "3.10.1",
-          "downloads": 3857714,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.10.1.json"
-        },
-        {
-          "version": "3.11.0",
-          "downloads": 1284682,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.11.0.json"
-        }
-      ]
-    }
-  ]
-}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV3_noGitHubProjectUrl.json b/lib/datasource/nuget/__fixtures__/nunitV3_noGitHubProjectUrl.json
deleted file mode 100644
index de5f080078f430fbfb99fe6175dd850bb3aef794..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitV3_noGitHubProjectUrl.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
-  "@context": {
-    "@vocab": "http://schema.nuget.org/schema#",
-    "@base": "https://api.nuget.org/v3/registration3/"
-  },
-  "totalHits": 1,
-  "lastReopen": "2019-02-04T10:47:54.6449537Z",
-  "index": "v3-lucene2-v2v3-20171018",
-  "data": [
-    {
-      "@id": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "@type": "Package",
-      "registration": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "id": "NUnit",
-      "version": "3.11.0",
-      "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.4+\n- .NET Core",
-      "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
-      "title": "NUnit",
-      "iconUrl": "https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png",
-      "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
-      "projectUrl": "https://nunit.org",
-      "tags": [
-        "nunit",
-        "test",
-        "testing",
-        "tdd",
-        "framework",
-        "fluent",
-        "assert",
-        "theory",
-        "plugin",
-        "addin"
-      ],
-      "authors": ["Charlie Poole, Rob Prouse"],
-      "totalDownloads": 34513003,
-      "verified": true,
-      "versions": [
-        {
-          "version": "2.5.7.10213",
-          "downloads": 120456,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.7.10213.json"
-        }
-      ]
-    }
-  ]
-}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV3_privateFeed.json b/lib/datasource/nuget/__fixtures__/nunitV3_privateFeed.json
deleted file mode 100644
index 2b772054a7f1737dd2b779af978a4538e5554505..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitV3_privateFeed.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
-  "@context": {
-    "@vocab": "http://schema.nuget.org/schema#",
-    "@base": "https://api.nuget.org/v3/registration3/"
-  },
-  "totalHits": 1,
-  "lastReopen": "2019-02-04T10:47:54.6449537Z",
-  "index": "v3-lucene2-v2v3-20171018",
-  "data": [
-    {
-      "@id": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "@type": "Package",
-      "registration": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "id": "NUnit",
-      "version": "3.11.0",
-      "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.4+\n- .NET Core",
-      "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
-      "title": "NUnit",
-      "iconUrl": "https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png",
-      "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
-      "projectUrl": "https://github.com/nunit/nunit",
-      "tags": [
-        "nunit",
-        "test",
-        "testing",
-        "tdd",
-        "framework",
-        "fluent",
-        "assert",
-        "theory",
-        "plugin",
-        "addin"
-      ],
-      "authors": ["Charlie Poole, Rob Prouse"],
-      "totalDownloads": 34513003,
-      "verified": true,
-      "versions": [
-        {
-          "version": "3.11.0",
-          "downloads": 3857714,
-          "@id": "https://myprivatefeed/registration3/nunit/3.10.1.json"
-        },
-        {
-          "version": "3.12.0",
-          "downloads": 1284682,
-          "@id": "https://myprivatefeed/registration3/nunit/3.11.0.json"
-        }
-      ]
-    }
-  ]
-}
diff --git a/lib/datasource/nuget/__fixtures__/nunitV3_withoutProjectUrl.json b/lib/datasource/nuget/__fixtures__/nunitV3_withoutProjectUrl.json
deleted file mode 100644
index 1e23d3a597b9313c607472c8e0ba6c62718ce9fd..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitV3_withoutProjectUrl.json
+++ /dev/null
@@ -1,185 +0,0 @@
-{
-  "@context": {
-    "@vocab": "http://schema.nuget.org/schema#",
-    "@base": "https://api.nuget.org/v3/registration3/"
-  },
-  "totalHits": 1,
-  "lastReopen": "2019-02-04T10:47:54.6449537Z",
-  "index": "v3-lucene2-v2v3-20171018",
-  "data": [
-    {
-      "@id": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "@type": "Package",
-      "registration": "https://api.nuget.org/v3/registration3/nunit/index.json",
-      "id": "NUnit",
-      "version": "3.11.0",
-      "description": "NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible.\n\nThis package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.\n\nSupported platforms:\n- .NET Framework 2.0+\n- .NET Standard 1.4+\n- .NET Core",
-      "summary": "NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.",
-      "title": "NUnit",
-      "iconUrl": "https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png",
-      "licenseUrl": "https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt",
-      "tags": [
-        "nunit",
-        "test",
-        "testing",
-        "tdd",
-        "framework",
-        "fluent",
-        "assert",
-        "theory",
-        "plugin",
-        "addin"
-      ],
-      "authors": ["Charlie Poole, Rob Prouse"],
-      "totalDownloads": 34513003,
-      "verified": true,
-      "versions": [
-        {
-          "version": "2.5.7.10213",
-          "downloads": 120456,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.7.10213.json"
-        },
-        {
-          "version": "2.5.9.10348",
-          "downloads": 35430,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.9.10348.json"
-        },
-        {
-          "version": "2.5.10.11092",
-          "downloads": 398490,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.5.10.11092.json"
-        },
-        {
-          "version": "2.6.0.12054",
-          "downloads": 378279,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.0.12054.json"
-        },
-        {
-          "version": "2.6.1",
-          "downloads": 247167,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.1.json"
-        },
-        {
-          "version": "2.6.2",
-          "downloads": 1294687,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.2.json"
-        },
-        {
-          "version": "2.6.3",
-          "downloads": 2830278,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.3.json"
-        },
-        {
-          "version": "2.6.4",
-          "downloads": 5738258,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.4.json"
-        },
-        {
-          "version": "2.6.5",
-          "downloads": 23173,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.5.json"
-        },
-        {
-          "version": "2.6.6",
-          "downloads": 14324,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.6.json"
-        },
-        {
-          "version": "2.6.7",
-          "downloads": 24558,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.6.7.json"
-        },
-        {
-          "version": "2.7.0",
-          "downloads": 27939,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/2.7.0.json"
-        },
-        {
-          "version": "3.0.0",
-          "downloads": 342037,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.0.0.json"
-        },
-        {
-          "version": "3.0.1",
-          "downloads": 858272,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.0.1.json"
-        },
-        {
-          "version": "3.2.0",
-          "downloads": 529977,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.2.0.json"
-        },
-        {
-          "version": "3.2.1",
-          "downloads": 680526,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.2.1.json"
-        },
-        {
-          "version": "3.4.0",
-          "downloads": 103314,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.4.0.json"
-        },
-        {
-          "version": "3.4.1",
-          "downloads": 1237846,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.4.1.json"
-        },
-        {
-          "version": "3.5.0",
-          "downloads": 1682294,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.5.0.json"
-        },
-        {
-          "version": "3.6.0",
-          "downloads": 1089915,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.6.0.json"
-        },
-        {
-          "version": "3.6.1",
-          "downloads": 1967691,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.6.1.json"
-        },
-        {
-          "version": "3.7.0",
-          "downloads": 197893,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.7.0.json"
-        },
-        {
-          "version": "3.7.1",
-          "downloads": 1747106,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.7.1.json"
-        },
-        {
-          "version": "3.8.0",
-          "downloads": 87425,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.8.0.json"
-        },
-        {
-          "version": "3.8.1",
-          "downloads": 4326904,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.8.1.json"
-        },
-        {
-          "version": "3.9.0",
-          "downloads": 3224020,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.9.0.json"
-        },
-        {
-          "version": "3.10.0",
-          "downloads": 39849,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.10.0.json"
-        },
-        {
-          "version": "3.10.1",
-          "downloads": 3857714,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.10.1.json"
-        },
-        {
-          "version": "3.11.0",
-          "downloads": 1284682,
-          "@id": "https://api.nuget.org/v3/registration3/nunit/3.11.0.json"
-        }
-      ]
-    }
-  ]
-}
diff --git a/lib/datasource/nuget/__fixtures__/nunitv3_nuget-org.xml b/lib/datasource/nuget/__fixtures__/nunitv3_nuget-org.xml
deleted file mode 100644
index 711a9c13de47ee288b376c1819f940d9b42d781d..0000000000000000000000000000000000000000
--- a/lib/datasource/nuget/__fixtures__/nunitv3_nuget-org.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
-  <metadata minClientVersion="2.12">
-    <id>NUnit</id>
-    <version>3.11.0</version>
-    <title>NUnit</title>
-    <authors>Charlie Poole, Rob Prouse</authors>
-    <owners>Charlie Poole, Rob Prouse</owners>
-    <requireLicenseAcceptance>false</requireLicenseAcceptance>
-    <licenseUrl>https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt</licenseUrl>
-    <projectUrl>http://nunit.org/</projectUrl>
-    <iconUrl>https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl>
-    <description>
-      NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly. Supported platforms: - .NET Framework 2.0+ - .NET Standard 1.4+ - .NET Core
-    </description>
-    <summary>NUnit is a unit-testing framework for all .NET languages with a strong TDD focus.</summary>
-    <releaseNotes>
-      This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly.
-    </releaseNotes>
-    <copyright>Copyright (c) 2018 Charlie Poole, Rob Prouse</copyright>
-    <language>en-US</language>
-    <tags>nunit test testing tdd framework fluent assert theory plugin addin</tags>
-    <repository type="git" url="https://github.com/nunit/nunit" />
-    <dependencies>
-      <group targetFramework=".NETFramework2.0" />
-      <group targetFramework=".NETFramework3.5" />
-      <group targetFramework=".NETFramework4.0" />
-      <group targetFramework=".NETFramework4.5" />
-      <group targetFramework=".NETStandard1.4">
-        <dependency id="NETStandard.Library" version="1.6.1" />
-        <dependency id="System.Reflection.TypeExtensions" version="4.4.0" exclude="compile" />
-      </group>
-      <group targetFramework=".NETStandard2.0">
-        <dependency id="NETStandard.Library" version="2.0.0" />
-      </group>
-    </dependencies>
-  </metadata>
-</package>
diff --git a/lib/datasource/nuget/__fixtures__/indexV3.json b/lib/datasource/nuget/__fixtures__/v3_index.json
similarity index 68%
rename from lib/datasource/nuget/__fixtures__/indexV3.json
rename to lib/datasource/nuget/__fixtures__/v3_index.json
index dcb3a70b2dc90f1e25402d416431730bf3119fc0..c09ca0532853b0a7fc92a5988014fbf16f5cbd28 100644
--- a/lib/datasource/nuget/__fixtures__/indexV3.json
+++ b/lib/datasource/nuget/__fixtures__/v3_index.json
@@ -2,37 +2,37 @@
   "version": "3.0.0",
   "resources": [
     {
-      "@id": "https://api-v2v3search-0.nuget.org/query",
+      "@id": "https://azuresearch-usnc.nuget.org/query",
       "@type": "SearchQueryService",
       "comment": "Query endpoint of NuGet Search service (primary)"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/query",
+      "@id": "https://azuresearch-ussc.nuget.org/query",
       "@type": "SearchQueryService",
       "comment": "Query endpoint of NuGet Search service (secondary)"
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/autocomplete",
+      "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService",
       "comment": "Autocomplete endpoint of NuGet Search service (primary)"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/autocomplete",
+      "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService",
       "comment": "Autocomplete endpoint of NuGet Search service (secondary)"
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/",
+      "@id": "https://azuresearch-usnc.nuget.org/",
       "@type": "SearchGalleryQueryService/3.0.0-rc",
       "comment": "Azure Website based Search Service used by Gallery (primary)"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/",
+      "@id": "https://azuresearch-ussc.nuget.org/",
       "@type": "SearchGalleryQueryService/3.0.0-rc",
       "comment": "Azure Website based Search Service used by Gallery (secondary)"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3/",
+      "@id": "https://api.nuget.org/v3/registration5-semver1/",
       "@type": "RegistrationsBaseUrl",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored"
     },
@@ -59,27 +59,47 @@
       "comment": "The gallery symbol publish endpoint."
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/query",
+      "@id": "https://azuresearch-usnc.nuget.org/query",
       "@type": "SearchQueryService/3.0.0-rc",
       "comment": "Query endpoint of NuGet Search service (primary) used by RC clients"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/query",
+      "@id": "https://azuresearch-ussc.nuget.org/query",
       "@type": "SearchQueryService/3.0.0-rc",
       "comment": "Query endpoint of NuGet Search service (secondary) used by RC clients"
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/autocomplete",
+      "@id": "https://azuresearch-usnc.nuget.org/query",
+      "@type": "SearchQueryService/3.5.0",
+      "comment": "Query endpoint of NuGet Search service (primary) that supports package type filtering"
+    },
+    {
+      "@id": "https://azuresearch-ussc.nuget.org/query",
+      "@type": "SearchQueryService/3.5.0",
+      "comment": "Query endpoint of NuGet Search service (secondary) that supports package type filtering"
+    },
+    {
+      "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService/3.0.0-rc",
       "comment": "Autocomplete endpoint of NuGet Search service (primary) used by RC clients"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/autocomplete",
+      "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService/3.0.0-rc",
       "comment": "Autocomplete endpoint of NuGet Search service (secondary) used by RC clients"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3/",
+      "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
+      "@type": "SearchAutocompleteService/3.5.0",
+      "comment": "Autocomplete endpoint of NuGet Search service (primary) that supports package type filtering"
+    },
+    {
+      "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
+      "@type": "SearchAutocompleteService/3.5.0",
+      "comment": "Autocomplete endpoint of NuGet Search service (secondary) that supports package type filtering"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-semver1/",
       "@type": "RegistrationsBaseUrl/3.0.0-rc",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored used by RC clients. This base URL does not include SemVer 2.0.0 packages."
     },
@@ -89,37 +109,37 @@
       "comment": "URI template used by NuGet Client to construct Report Abuse URL for packages used by RC clients"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3/{id-lower}/index.json",
+      "@id": "https://api.nuget.org/v3/registration5-semver1/{id-lower}/index.json",
       "@type": "PackageDisplayMetadataUriTemplate/3.0.0-rc",
       "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3/{id-lower}/{version-lower}.json",
+      "@id": "https://api.nuget.org/v3/registration5-semver1/{id-lower}/{version-lower}.json",
       "@type": "PackageVersionDisplayMetadataUriTemplate/3.0.0-rc",
       "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID, Version"
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/query",
+      "@id": "https://azuresearch-usnc.nuget.org/query",
       "@type": "SearchQueryService/3.0.0-beta",
       "comment": "Query endpoint of NuGet Search service (primary) used by beta clients"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/query",
+      "@id": "https://azuresearch-ussc.nuget.org/query",
       "@type": "SearchQueryService/3.0.0-beta",
       "comment": "Query endpoint of NuGet Search service (secondary) used by beta clients"
     },
     {
-      "@id": "https://api-v2v3search-0.nuget.org/autocomplete",
+      "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService/3.0.0-beta",
       "comment": "Autocomplete endpoint of NuGet Search service (primary) used by beta clients"
     },
     {
-      "@id": "https://api-v2v3search-1.nuget.org/autocomplete",
+      "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
       "@type": "SearchAutocompleteService/3.0.0-beta",
       "comment": "Autocomplete endpoint of NuGet Search service (secondary) used by beta clients"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3/",
+      "@id": "https://api.nuget.org/v3/registration5-semver1/",
       "@type": "RegistrationsBaseUrl/3.0.0-beta",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored used by Beta clients. This base URL does not include SemVer 2.0.0 packages."
     },
@@ -129,17 +149,22 @@
       "comment": "URI template used by NuGet Client to construct Report Abuse URL for packages"
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3-gz/",
+      "@id": "https://www.nuget.org/packages/{id}/{version}?_src=template",
+      "@type": "PackageDetailsUriTemplate/5.1.0",
+      "comment": "URI template used by NuGet Client to construct details URL for packages"
+    },
+    {
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver1/",
       "@type": "RegistrationsBaseUrl/3.4.0",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL does not include SemVer 2.0.0 packages."
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3-gz-semver2/",
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/",
       "@type": "RegistrationsBaseUrl/3.6.0",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
     },
     {
-      "@id": "https://api.nuget.org/v3/registration3-gz-semver2/",
+      "@id": "https://api.nuget.org/v3/registration5-gz-semver2/",
       "@type": "RegistrationsBaseUrl/Versioned",
       "clientVersion": "4.3.0-alpha",
       "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
@@ -150,8 +175,8 @@
       "comment": "The endpoint for discovering information about this package source's repository signatures."
     },
     {
-      "@id": "https://api.nuget.org/v3-index/repository-signatures/4.9.0/index.json",
-      "@type": "RepositorySignatures/4.9.0",
+      "@id": "https://api.nuget.org/v3-index/repository-signatures/5.0.0/index.json",
+      "@type": "RepositorySignatures/5.0.0",
       "comment": "The endpoint for discovering information about this package source's repository signatures."
     },
     {
diff --git a/lib/datasource/nuget/__snapshots__/index.spec.ts.snap b/lib/datasource/nuget/__snapshots__/index.spec.ts.snap
index 1950b6838da58333f3dd526655c57008153ebc0b..f57da2831120879c7fc06df1474b55deeab5a68d 100644
--- a/lib/datasource/nuget/__snapshots__/index.spec.ts.snap
+++ b/lib/datasource/nuget/__snapshots__/index.spec.ts.snap
@@ -16,11 +16,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
 ]
 `;
@@ -41,11 +41,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
 ]
 `;
@@ -307,95 +307,189 @@ Array [
 
 exports[`datasource/nuget getReleases processes real data (v3) feed is a nuget.org 1`] = `
 Object {
+  "homepage": "https://nunit.org/",
   "pkgName": "nunit",
   "releases": Array [
     Object {
+      "releaseTimestamp": "2011-01-07T07:57:55.387+00:00",
       "version": "2.5.7.10213",
     },
     Object {
+      "releaseTimestamp": "2011-02-09T07:26:34.347+00:00",
       "version": "2.5.9.10348",
     },
     Object {
+      "releaseTimestamp": "2011-04-25T20:20:34.397+00:00",
       "version": "2.5.10.11092",
     },
     Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "2.6.0.12051",
+    },
+    Object {
+      "releaseTimestamp": "2012-02-24T04:03:05.29+00:00",
       "version": "2.6.0.12054",
     },
     Object {
+      "releaseTimestamp": "2012-08-05T03:08:28.403+00:00",
       "version": "2.6.1",
     },
     Object {
+      "releaseTimestamp": "2012-10-23T15:37:48+00:00",
       "version": "2.6.2",
     },
     Object {
+      "releaseTimestamp": "2013-10-11T01:52:53.417+00:00",
       "version": "2.6.3",
     },
     Object {
+      "releaseTimestamp": "2014-12-17T17:30:47.607+00:00",
       "version": "2.6.4",
     },
     Object {
+      "releaseTimestamp": "2018-04-20T04:23:59.217+00:00",
       "version": "2.6.5",
     },
     Object {
+      "releaseTimestamp": "2018-06-07T15:24:16.807+00:00",
       "version": "2.6.6",
     },
     Object {
+      "releaseTimestamp": "2018-07-07T15:41:32.657+00:00",
       "version": "2.6.7",
     },
     Object {
+      "releaseTimestamp": "2018-08-10T20:45:24.08+00:00",
       "version": "2.7.0",
     },
     Object {
+      "releaseTimestamp": "2019-08-21T07:08:49.36+00:00",
+      "version": "2.7.1",
+    },
+    Object {
+      "releaseTimestamp": "2014-09-23T03:11:33.43+00:00",
+      "version": "3.0.0-alpha",
+    },
+    Object {
+      "releaseTimestamp": "2014-11-03T06:24:59.217+00:00",
+      "version": "3.0.0-alpha-2",
+    },
+    Object {
+      "releaseTimestamp": "2014-11-29T22:38:18.493+00:00",
+      "version": "3.0.0-alpha-3",
+    },
+    Object {
+      "releaseTimestamp": "2014-12-31T04:47:39.507+00:00",
+      "version": "3.0.0-alpha-4",
+    },
+    Object {
+      "releaseTimestamp": "2015-01-31T22:13:01.997+00:00",
+      "version": "3.0.0-alpha-5",
+    },
+    Object {
+      "releaseTimestamp": "2015-03-26T11:33:22.173+00:00",
+      "version": "3.0.0-beta-1",
+    },
+    Object {
+      "releaseTimestamp": "2015-05-13T00:51:22.43+00:00",
+      "version": "3.0.0-beta-2",
+    },
+    Object {
+      "releaseTimestamp": "2015-07-15T23:44:47.403+00:00",
+      "version": "3.0.0-beta-3",
+    },
+    Object {
+      "releaseTimestamp": "2015-08-25T23:24:11.473+00:00",
+      "version": "3.0.0-beta-4",
+    },
+    Object {
+      "releaseTimestamp": "2015-10-17T03:39:18.1+00:00",
+      "version": "3.0.0-beta-5",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-01T21:56:49.637+00:00",
+      "version": "3.0.0-rc",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-08T16:27:15.11+00:00",
+      "version": "3.0.0-rc-2",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-14T05:30:57.323+00:00",
+      "version": "3.0.0-rc-3",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-16T00:02:51.807+00:00",
       "version": "3.0.0",
     },
     Object {
+      "releaseTimestamp": "2015-12-02T03:52:57.997+00:00",
       "version": "3.0.1",
     },
     Object {
+      "releaseTimestamp": "2016-03-05T21:12:58.99+00:00",
       "version": "3.2.0",
     },
     Object {
+      "releaseTimestamp": "2016-04-19T15:31:13.39+00:00",
       "version": "3.2.1",
     },
     Object {
+      "releaseTimestamp": "2016-06-25T17:44:56.253+00:00",
       "version": "3.4.0",
     },
     Object {
+      "releaseTimestamp": "2016-06-30T21:20:49.497+00:00",
       "version": "3.4.1",
     },
     Object {
+      "releaseTimestamp": "2016-10-04T01:19:19.447+00:00",
       "version": "3.5.0",
     },
     Object {
+      "releaseTimestamp": "2017-01-10T02:17:19.187+00:00",
       "version": "3.6.0",
     },
     Object {
+      "releaseTimestamp": "2017-02-26T14:56:04.407+00:00",
       "version": "3.6.1",
     },
     Object {
+      "releaseTimestamp": "2017-05-30T00:07:36.707+00:00",
       "version": "3.7.0",
     },
     Object {
+      "releaseTimestamp": "2017-06-06T01:59:11.787+00:00",
       "version": "3.7.1",
     },
     Object {
+      "releaseTimestamp": "2017-08-28T00:08:29.5+00:00",
       "version": "3.8.0",
     },
     Object {
+      "releaseTimestamp": "2017-08-29T01:11:58.86+00:00",
       "version": "3.8.1",
     },
     Object {
+      "releaseTimestamp": "2017-11-10T23:35:19.67+00:00",
       "version": "3.9.0",
     },
     Object {
+      "releaseTimestamp": "2018-03-13T00:29:56.4+00:00",
       "version": "3.10.0",
     },
     Object {
+      "releaseTimestamp": "2018-03-13T03:13:09.93+00:00",
       "version": "3.10.1",
     },
     Object {
+      "releaseTimestamp": "2018-10-07T01:17:31.31+00:00",
       "version": "3.11.0",
     },
+    Object {
+      "releaseTimestamp": "2019-05-15T00:24:28.39+00:00",
+      "version": "3.12.0",
+    },
   ],
   "sourceUrl": "https://github.com/nunit/nunit",
 }
@@ -417,11 +511,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
   Object {
     "headers": Object {
@@ -429,185 +523,926 @@ Array [
       "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
-    "method": "GET",
-    "url": "https://api.nuget.org/v3-flatcontainer/nunit/3.11.0/nunit.nuspec",
-  },
-]
-`;
-
-exports[`datasource/nuget getReleases processes real data (v3) feed is not a nuget.org 1`] = `
-Object {
-  "pkgName": "nunit",
-  "releases": Array [
+    "method": "GET",
+    "url": "https://api.nuget.org/v3-flatcontainer/nunit/3.12.0/nunit.nuspec",
+  },
+]
+`;
+
+exports[`datasource/nuget getReleases processes real data (v3) feed is not a nuget.org 1`] = `
+Object {
+  "homepage": "https://nunit.org/",
+  "pkgName": "nunit",
+  "releases": Array [
+    Object {
+      "releaseTimestamp": "2011-01-07T07:57:55.387+00:00",
+      "version": "2.5.7.10213",
+    },
+    Object {
+      "releaseTimestamp": "2011-02-09T07:26:34.347+00:00",
+      "version": "2.5.9.10348",
+    },
+    Object {
+      "releaseTimestamp": "2011-04-25T20:20:34.397+00:00",
+      "version": "2.5.10.11092",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "2.6.0.12051",
+    },
+    Object {
+      "releaseTimestamp": "2012-02-24T04:03:05.29+00:00",
+      "version": "2.6.0.12054",
+    },
+    Object {
+      "releaseTimestamp": "2012-08-05T03:08:28.403+00:00",
+      "version": "2.6.1",
+    },
+    Object {
+      "releaseTimestamp": "2012-10-23T15:37:48+00:00",
+      "version": "2.6.2",
+    },
+    Object {
+      "releaseTimestamp": "2013-10-11T01:52:53.417+00:00",
+      "version": "2.6.3",
+    },
+    Object {
+      "releaseTimestamp": "2014-12-17T17:30:47.607+00:00",
+      "version": "2.6.4",
+    },
+    Object {
+      "releaseTimestamp": "2018-04-20T04:23:59.217+00:00",
+      "version": "2.6.5",
+    },
+    Object {
+      "releaseTimestamp": "2018-06-07T15:24:16.807+00:00",
+      "version": "2.6.6",
+    },
+    Object {
+      "releaseTimestamp": "2018-07-07T15:41:32.657+00:00",
+      "version": "2.6.7",
+    },
+    Object {
+      "releaseTimestamp": "2018-08-10T20:45:24.08+00:00",
+      "version": "2.7.0",
+    },
+    Object {
+      "releaseTimestamp": "2019-08-21T07:08:49.36+00:00",
+      "version": "2.7.1",
+    },
+    Object {
+      "releaseTimestamp": "2014-09-23T03:11:33.43+00:00",
+      "version": "3.0.0-alpha",
+    },
+    Object {
+      "releaseTimestamp": "2014-11-03T06:24:59.217+00:00",
+      "version": "3.0.0-alpha-2",
+    },
+    Object {
+      "releaseTimestamp": "2014-11-29T22:38:18.493+00:00",
+      "version": "3.0.0-alpha-3",
+    },
+    Object {
+      "releaseTimestamp": "2014-12-31T04:47:39.507+00:00",
+      "version": "3.0.0-alpha-4",
+    },
+    Object {
+      "releaseTimestamp": "2015-01-31T22:13:01.997+00:00",
+      "version": "3.0.0-alpha-5",
+    },
+    Object {
+      "releaseTimestamp": "2015-03-26T11:33:22.173+00:00",
+      "version": "3.0.0-beta-1",
+    },
+    Object {
+      "releaseTimestamp": "2015-05-13T00:51:22.43+00:00",
+      "version": "3.0.0-beta-2",
+    },
+    Object {
+      "releaseTimestamp": "2015-07-15T23:44:47.403+00:00",
+      "version": "3.0.0-beta-3",
+    },
+    Object {
+      "releaseTimestamp": "2015-08-25T23:24:11.473+00:00",
+      "version": "3.0.0-beta-4",
+    },
+    Object {
+      "releaseTimestamp": "2015-10-17T03:39:18.1+00:00",
+      "version": "3.0.0-beta-5",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-01T21:56:49.637+00:00",
+      "version": "3.0.0-rc",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-08T16:27:15.11+00:00",
+      "version": "3.0.0-rc-2",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-14T05:30:57.323+00:00",
+      "version": "3.0.0-rc-3",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-16T00:02:51.807+00:00",
+      "version": "3.0.0",
+    },
+    Object {
+      "releaseTimestamp": "2015-12-02T03:52:57.997+00:00",
+      "version": "3.0.1",
+    },
+    Object {
+      "releaseTimestamp": "2016-03-05T21:12:58.99+00:00",
+      "version": "3.2.0",
+    },
+    Object {
+      "releaseTimestamp": "2016-04-19T15:31:13.39+00:00",
+      "version": "3.2.1",
+    },
+    Object {
+      "releaseTimestamp": "2016-06-25T17:44:56.253+00:00",
+      "version": "3.4.0",
+    },
+    Object {
+      "releaseTimestamp": "2016-06-30T21:20:49.497+00:00",
+      "version": "3.4.1",
+    },
+    Object {
+      "releaseTimestamp": "2016-10-04T01:19:19.447+00:00",
+      "version": "3.5.0",
+    },
+    Object {
+      "releaseTimestamp": "2017-01-10T02:17:19.187+00:00",
+      "version": "3.6.0",
+    },
+    Object {
+      "releaseTimestamp": "2017-02-26T14:56:04.407+00:00",
+      "version": "3.6.1",
+    },
+    Object {
+      "releaseTimestamp": "2017-05-30T00:07:36.707+00:00",
+      "version": "3.7.0",
+    },
+    Object {
+      "releaseTimestamp": "2017-06-06T01:59:11.787+00:00",
+      "version": "3.7.1",
+    },
+    Object {
+      "releaseTimestamp": "2017-08-28T00:08:29.5+00:00",
+      "version": "3.8.0",
+    },
+    Object {
+      "releaseTimestamp": "2017-08-29T01:11:58.86+00:00",
+      "version": "3.8.1",
+    },
+    Object {
+      "releaseTimestamp": "2017-11-10T23:35:19.67+00:00",
+      "version": "3.9.0",
+    },
+    Object {
+      "releaseTimestamp": "2018-03-13T00:29:56.4+00:00",
+      "version": "3.10.0",
+    },
+    Object {
+      "releaseTimestamp": "2018-03-13T03:13:09.93+00:00",
+      "version": "3.10.1",
+    },
+    Object {
+      "releaseTimestamp": "2018-10-07T01:17:31.31+00:00",
+      "version": "3.11.0",
+    },
+    Object {
+      "releaseTimestamp": "2019-05-15T00:24:28.39+00:00",
+      "version": "3.12.0",
+    },
+  ],
+  "sourceUrl": "https://nunit.org/",
+}
+`;
+
+exports[`datasource/nuget getReleases processes real data (v3) feed is not a nuget.org 2`] = `
+Array [
+  Object {
+    "headers": Object {
+      "accept": "application/json",
+      "accept-encoding": "gzip, deflate",
+      "host": "myprivatefeed",
+      "user-agent": "https://github.com/renovatebot/renovate",
+    },
+    "method": "GET",
+    "url": "https://myprivatefeed/index.json",
+  },
+  Object {
+    "headers": Object {
+      "accept": "application/json",
+      "accept-encoding": "gzip, deflate",
+      "host": "api.nuget.org",
+      "user-agent": "https://github.com/renovatebot/renovate",
+    },
+    "method": "GET",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
+  },
+]
+`;
+
+exports[`datasource/nuget getReleases processes real data (v3) for several catalog pages 1`] = `
+Object {
+  "homepage": "https://nlog-project.org/",
+  "pkgName": "nlog",
+  "releases": Array [
+    Object {
+      "releaseTimestamp": "2011-01-07T07:57:35.043+00:00",
+      "version": "1.0.0.505",
+    },
+    Object {
+      "releaseTimestamp": "2011-07-18T14:20:06.54+00:00",
+      "version": "2.0.0.2000",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "2.0.1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "2.0.1.1",
+    },
+    Object {
+      "releaseTimestamp": "2013-04-08T10:18:27.3+00:00",
+      "version": "2.0.1.2",
+    },
+    Object {
+      "releaseTimestamp": "2013-10-10T22:26:20.613+00:00",
+      "version": "2.1.0",
+    },
+    Object {
+      "releaseTimestamp": "2014-06-02T14:47:27.65+00:00",
+      "version": "3.0.0",
+    },
+    Object {
+      "releaseTimestamp": "2014-06-24T18:42:54.117+00:00",
+      "version": "3.1.0",
+    },
+    Object {
+      "releaseTimestamp": "2015-01-02T10:14:28.843+00:00",
+      "version": "3.2.0",
+    },
+    Object {
+      "releaseTimestamp": "2015-04-24T21:15:30.34+00:00",
+      "version": "3.2.1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.0.0-rc",
+    },
+    Object {
+      "releaseTimestamp": "2015-06-09T19:41:48.923+00:00",
+      "version": "4.0.0",
+    },
+    Object {
+      "releaseTimestamp": "2015-06-18T20:46:30.997+00:00",
+      "version": "4.0.1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.1.0-alpha1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.1.0-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2015-08-31T17:29:28.263+00:00",
+      "version": "4.1.0",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.1.1-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2015-09-12T14:10:41.85+00:00",
+      "version": "4.1.1",
+    },
+    Object {
+      "releaseTimestamp": "2015-09-20T19:49:25.11+00:00",
+      "version": "4.1.2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.2.0-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2015-10-24T20:48:16.067+00:00",
+      "version": "4.2.0",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.2.1-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2015-11-21T14:35:27.68+00:00",
+      "version": "4.2.1",
+    },
+    Object {
+      "releaseTimestamp": "2015-12-02T22:45:07.057+00:00",
+      "version": "4.2.2",
+    },
+    Object {
+      "releaseTimestamp": "2015-12-20T22:21:32.393+00:00",
+      "version": "4.2.3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-alpha1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-alpha2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-alpha3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-alpha4",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-beta1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-beta2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-beta3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-rc1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-rc2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.0-rc3",
+    },
+    Object {
+      "releaseTimestamp": "2016-04-16T12:06:14.047+00:00",
+      "version": "4.3.0",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.1-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2016-04-20T08:38:41+00:00",
+      "version": "4.3.1",
+    },
+    Object {
+      "releaseTimestamp": "2016-04-26T20:20:30.51+00:00",
+      "version": "4.3.2",
+    },
+    Object {
+      "releaseTimestamp": "2016-04-28T20:41:45.63+00:00",
+      "version": "4.3.3",
+    },
+    Object {
+      "releaseTimestamp": "2016-05-16T21:30:35.15+00:00",
+      "version": "4.3.4",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.5-alpha1",
+    },
+    Object {
+      "releaseTimestamp": "2016-06-12T22:24:27.787+00:00",
+      "version": "4.3.5",
+    },
+    Object {
+      "releaseTimestamp": "2016-07-23T22:39:36.957+00:00",
+      "version": "4.3.6",
+    },
+    Object {
+      "releaseTimestamp": "2016-08-06T13:22:54.357+00:00",
+      "version": "4.3.7",
+    },
+    Object {
+      "releaseTimestamp": "2016-09-05T19:24:50.107+00:00",
+      "version": "4.3.8",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.3.9-test-retry-archive",
+    },
+    Object {
+      "releaseTimestamp": "2016-09-18T15:32:44.897+00:00",
+      "version": "4.3.9",
+    },
+    Object {
+      "releaseTimestamp": "2016-10-11T20:03:23.587+00:00",
+      "version": "4.3.10",
+    },
+    Object {
+      "releaseTimestamp": "2016-11-07T21:13:11.687+00:00",
+      "version": "4.3.11",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-alpha1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-alpha2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-alpha3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-alpha4",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta-14",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta10",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta11",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta12",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta13",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta4",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta5",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta6",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta7",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta8",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-beta9",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-betaV14",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-betaV15",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-rc1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.0-rc2",
+    },
+    Object {
+      "releaseTimestamp": "2016-12-14T10:47:25.29+00:00",
+      "version": "4.4.0",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.1-dev-b4084",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.1-dev-b4085",
+    },
+    Object {
+      "releaseTimestamp": "2016-12-24T00:50:07.05+00:00",
+      "version": "4.4.1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.2-rc1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.2-rc2",
+    },
+    Object {
+      "releaseTimestamp": "2017-02-06T21:38:25.163+00:00",
+      "version": "4.4.2",
+    },
+    Object {
+      "releaseTimestamp": "2017-02-17T20:49:31.62+00:00",
+      "version": "4.4.3",
+    },
+    Object {
+      "releaseTimestamp": "2017-03-10T22:09:53.593+00:00",
+      "version": "4.4.4",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.5-beta1",
+    },
+    Object {
+      "releaseTimestamp": "2017-03-28T20:33:59.553+00:00",
+      "version": "4.4.5",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.6-beta1",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.6-beta2",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.6-beta3",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.4.6-rc1",
+    },
+    Object {
+      "releaseTimestamp": "2017-04-15T13:21:00.143+00:00",
+      "version": "4.4.6",
+    },
+    Object {
+      "releaseTimestamp": "2017-04-25T21:25:50.54+00:00",
+      "version": "4.4.7",
+    },
+    Object {
+      "releaseTimestamp": "2017-04-28T21:58:14.857+00:00",
+      "version": "4.4.8",
+    },
+    Object {
+      "releaseTimestamp": "2017-05-05T21:27:55.517+00:00",
+      "version": "4.4.9",
+    },
+    Object {
+      "releaseTimestamp": "2017-05-31T19:11:43+00:00",
+      "version": "4.4.10",
+    },
+    Object {
+      "releaseTimestamp": "2017-06-17T11:53:19.87+00:00",
+      "version": "4.4.11",
+    },
+    Object {
+      "releaseTimestamp": "2017-08-08T19:31:51.007+00:00",
+      "version": "4.4.12",
+    },
+    Object {
+      "releaseTimestamp": "2018-02-27T23:49:22.21+00:00",
+      "version": "4.4.13",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-alpha01",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-alpha02",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-alpha03",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-alpha04",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta01",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta02",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta03",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta04",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta05",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta06",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta07",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-beta08",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc01",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc02",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc03",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc04",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc05",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc06",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.5.0-rc07",
+    },
+    Object {
+      "releaseTimestamp": "2018-03-25T21:56:07.213+00:00",
+      "version": "4.5.0",
+    },
+    Object {
+      "releaseTimestamp": "2018-04-03T21:50:26.203+00:00",
+      "version": "4.5.1",
+    },
+    Object {
+      "releaseTimestamp": "2018-04-06T22:56:43.503+00:00",
+      "version": "4.5.2",
+    },
+    Object {
+      "releaseTimestamp": "2018-04-16T18:22:17.257+00:00",
+      "version": "4.5.3",
+    },
+    Object {
+      "releaseTimestamp": "2018-05-05T22:53:27.54+00:00",
+      "version": "4.5.4",
+    },
+    Object {
+      "releaseTimestamp": "2018-05-25T16:30:46.667+00:00",
+      "version": "4.5.5",
+    },
+    Object {
+      "releaseTimestamp": "2018-05-29T21:25:14.857+00:00",
+      "version": "4.5.6",
+    },
+    Object {
+      "releaseTimestamp": "2018-07-19T09:39:06.83+00:00",
+      "version": "4.5.7",
+    },
+    Object {
+      "releaseTimestamp": "2018-08-05T11:38:58.573+00:00",
+      "version": "4.5.8",
+    },
+    Object {
+      "releaseTimestamp": "2018-08-24T21:40:39.07+00:00",
+      "version": "4.5.9",
+    },
+    Object {
+      "releaseTimestamp": "2018-09-17T21:58:18.61+00:00",
+      "version": "4.5.10",
+    },
+    Object {
+      "releaseTimestamp": "2018-11-06T17:31:25.31+00:00",
+      "version": "4.5.11",
+    },
+    Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.6.0-rc1",
+    },
     Object {
-      "version": "2.5.7.10213",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.6.0-rc2",
     },
     Object {
-      "version": "2.5.9.10348",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.6.0-rc3",
     },
     Object {
-      "version": "2.5.10.11092",
+      "releaseTimestamp": "2019-03-21T00:27:35.483+00:00",
+      "version": "4.6.0",
     },
     Object {
-      "version": "2.6.0.12054",
+      "releaseTimestamp": "2019-03-29T23:23:40.613+00:00",
+      "version": "4.6.1",
     },
     Object {
-      "version": "2.6.1",
+      "releaseTimestamp": "2019-04-02T22:53:01.02+00:00",
+      "version": "4.6.2",
     },
     Object {
-      "version": "2.6.2",
+      "releaseTimestamp": "2019-04-30T20:12:12.64+00:00",
+      "version": "4.6.3",
     },
     Object {
-      "version": "2.6.3",
+      "releaseTimestamp": "2019-05-28T21:04:44.207+00:00",
+      "version": "4.6.4",
     },
     Object {
-      "version": "2.6.4",
+      "releaseTimestamp": "2019-06-14T00:20:11.71+00:00",
+      "version": "4.6.5",
     },
     Object {
-      "version": "2.6.5",
+      "releaseTimestamp": "2019-07-14T21:33:26.327+00:00",
+      "version": "4.6.6",
     },
     Object {
-      "version": "2.6.6",
+      "releaseTimestamp": "2019-08-25T19:22:57.47+00:00",
+      "version": "4.6.7",
     },
     Object {
-      "version": "2.6.7",
+      "releaseTimestamp": "2019-11-04T21:35:02.22+00:00",
+      "version": "4.6.8",
     },
     Object {
-      "version": "2.7.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "4.7.0-rc1",
     },
     Object {
-      "version": "3.0.0",
+      "releaseTimestamp": "2020-03-20T17:10:34.303+00:00",
+      "version": "4.7.0",
     },
     Object {
-      "version": "3.0.1",
+      "releaseTimestamp": "2020-05-15T14:48:03.62+00:00",
+      "version": "4.7.1",
     },
     Object {
-      "version": "3.2.0",
+      "releaseTimestamp": "2020-05-18T20:46:15.073+00:00",
+      "version": "4.7.2",
     },
     Object {
-      "version": "3.2.1",
+      "releaseTimestamp": "2020-07-31T22:20:36.847+00:00",
+      "version": "4.7.3",
     },
     Object {
-      "version": "3.4.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta01",
     },
     Object {
-      "version": "3.4.1",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta02",
     },
     Object {
-      "version": "3.5.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta03",
     },
     Object {
-      "version": "3.6.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta03-tryoutMutex",
     },
     Object {
-      "version": "3.6.1",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta04",
     },
     Object {
-      "version": "3.7.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta05",
     },
     Object {
-      "version": "3.7.1",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta05-test",
     },
     Object {
-      "version": "3.8.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta06",
     },
     Object {
-      "version": "3.8.1",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta07",
     },
     Object {
-      "version": "3.9.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta08",
     },
     Object {
-      "version": "3.10.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta09",
     },
     Object {
-      "version": "3.10.1",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta10",
     },
     Object {
-      "version": "3.11.0",
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "5.0.0-beta11",
     },
   ],
-  "sourceUrl": "https://github.com/nunit/nunit",
+  "sourceUrl": "https://github.com/NLog/NLog",
 }
 `;
 
-exports[`datasource/nuget getReleases processes real data (v3) feed is not a nuget.org 2`] = `
+exports[`datasource/nuget getReleases processes real data (v3) for several catalog pages 2`] = `
 Array [
   Object {
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "myprivatefeed",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://myprivatefeed/index.json",
+    "url": "https://api.nuget.org/v3/index.json",
   },
   Object {
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=nunit",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/index.json",
   },
-]
-`;
-
-exports[`datasource/nuget getReleases processes real data (v3) feed is not a nuget.org with mismatch 1`] = `
-Array [
   Object {
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "myprivatefeed",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://myprivatefeed/index.json",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/1.0.0.505/4.4.0-beta5.json",
   },
   Object {
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=nun",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.4.0-beta6/4.6.0-rc2.json",
   },
-]
-`;
-
-exports[`datasource/nuget getReleases processes real data no relase (v2) 1`] = `
-Array [
   Object {
     "headers": Object {
+      "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "www.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://www.nuget.org/api/v2/FindPackagesById()?id=%27nunit%27&$select=Version,IsLatestVersion,ProjectUrl,Published",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nlog/page/4.6.0-rc3/5.0.0-beta11.json",
   },
-]
-`;
-
-exports[`datasource/nuget getReleases processes real data with no github project url (v2) 1`] = `
-Object {
-  "pkgName": "nunit",
-  "releases": Array [
-    Object {
-      "version": "3.11.0",
+  Object {
+    "headers": Object {
+      "accept-encoding": "gzip, deflate",
+      "host": "api.nuget.org",
+      "user-agent": "https://github.com/renovatebot/renovate",
     },
-  ],
-  "sourceUrl": "https://nunit.org",
-}
+    "method": "GET",
+    "url": "https://api.nuget.org/v3-flatcontainer/nlog/4.7.3/nlog.nuspec",
+  },
+]
 `;
 
-exports[`datasource/nuget getReleases processes real data with no github project url (v2) 2`] = `
+exports[`datasource/nuget getReleases processes real data no relase (v2) 1`] = `
 Array [
   Object {
     "headers": Object {
@@ -621,39 +1456,28 @@ Array [
 ]
 `;
 
-exports[`datasource/nuget getReleases processes real data with no github project url (v3) 1`] = `
+exports[`datasource/nuget getReleases processes real data with no github project url (v2) 1`] = `
 Object {
   "pkgName": "nunit",
   "releases": Array [
     Object {
-      "version": "2.5.7.10213",
+      "version": "3.11.0",
     },
   ],
   "sourceUrl": "https://nunit.org",
 }
 `;
 
-exports[`datasource/nuget getReleases processes real data with no github project url (v3) 2`] = `
+exports[`datasource/nuget getReleases processes real data with no github project url (v2) 2`] = `
 Array [
   Object {
     "headers": Object {
-      "accept": "application/json",
-      "accept-encoding": "gzip, deflate",
-      "host": "myprivatefeed",
-      "user-agent": "https://github.com/renovatebot/renovate",
-    },
-    "method": "GET",
-    "url": "https://myprivatefeed/index.json",
-  },
-  Object {
-    "headers": Object {
-      "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "www.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=nunit",
+    "url": "https://www.nuget.org/api/v2/FindPackagesById()?id=%27nunit%27&$select=Version,IsLatestVersion,ProjectUrl,Published",
   },
 ]
 `;
@@ -809,218 +1633,189 @@ Array [
 ]
 `;
 
-exports[`datasource/nuget getReleases processes real data without project url (v3) 1`] = `
+exports[`datasource/nuget getReleases returns deduplicated results 1`] = `
 Object {
+  "homepage": "https://nunit.org/",
   "pkgName": "nunit",
   "releases": Array [
     Object {
+      "releaseTimestamp": "2011-01-07T07:57:55.387+00:00",
       "version": "2.5.7.10213",
     },
     Object {
+      "releaseTimestamp": "2011-02-09T07:26:34.347+00:00",
       "version": "2.5.9.10348",
     },
     Object {
+      "releaseTimestamp": "2011-04-25T20:20:34.397+00:00",
       "version": "2.5.10.11092",
     },
     Object {
+      "releaseTimestamp": "1900-01-01T00:00:00+00:00",
+      "version": "2.6.0.12051",
+    },
+    Object {
+      "releaseTimestamp": "2012-02-24T04:03:05.29+00:00",
       "version": "2.6.0.12054",
     },
     Object {
+      "releaseTimestamp": "2012-08-05T03:08:28.403+00:00",
       "version": "2.6.1",
     },
     Object {
+      "releaseTimestamp": "2012-10-23T15:37:48+00:00",
       "version": "2.6.2",
     },
     Object {
+      "releaseTimestamp": "2013-10-11T01:52:53.417+00:00",
       "version": "2.6.3",
     },
     Object {
+      "releaseTimestamp": "2014-12-17T17:30:47.607+00:00",
       "version": "2.6.4",
     },
     Object {
+      "releaseTimestamp": "2018-04-20T04:23:59.217+00:00",
       "version": "2.6.5",
     },
     Object {
+      "releaseTimestamp": "2018-06-07T15:24:16.807+00:00",
       "version": "2.6.6",
     },
     Object {
+      "releaseTimestamp": "2018-07-07T15:41:32.657+00:00",
       "version": "2.6.7",
     },
     Object {
+      "releaseTimestamp": "2018-08-10T20:45:24.08+00:00",
       "version": "2.7.0",
     },
     Object {
-      "version": "3.0.0",
-    },
-    Object {
-      "version": "3.0.1",
-    },
-    Object {
-      "version": "3.2.0",
-    },
-    Object {
-      "version": "3.2.1",
-    },
-    Object {
-      "version": "3.4.0",
-    },
-    Object {
-      "version": "3.4.1",
-    },
-    Object {
-      "version": "3.5.0",
-    },
-    Object {
-      "version": "3.6.0",
-    },
-    Object {
-      "version": "3.6.1",
-    },
-    Object {
-      "version": "3.7.0",
-    },
-    Object {
-      "version": "3.7.1",
-    },
-    Object {
-      "version": "3.8.0",
-    },
-    Object {
-      "version": "3.8.1",
-    },
-    Object {
-      "version": "3.9.0",
-    },
-    Object {
-      "version": "3.10.0",
-    },
-    Object {
-      "version": "3.10.1",
+      "releaseTimestamp": "2019-08-21T07:08:49.36+00:00",
+      "version": "2.7.1",
     },
     Object {
-      "version": "3.11.0",
-    },
-  ],
-}
-`;
-
-exports[`datasource/nuget getReleases processes real data without project url (v3) 2`] = `
-Array [
-  Object {
-    "headers": Object {
-      "accept": "application/json",
-      "accept-encoding": "gzip, deflate",
-      "host": "myprivatefeed",
-      "user-agent": "https://github.com/renovatebot/renovate",
-    },
-    "method": "GET",
-    "url": "https://myprivatefeed/index.json",
-  },
-  Object {
-    "headers": Object {
-      "accept": "application/json",
-      "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
-      "user-agent": "https://github.com/renovatebot/renovate",
+      "releaseTimestamp": "2014-09-23T03:11:33.43+00:00",
+      "version": "3.0.0-alpha",
     },
-    "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=nunit",
-  },
-]
-`;
-
-exports[`datasource/nuget getReleases returns deduplicated results 1`] = `
-Object {
-  "pkgName": "nunit",
-  "releases": Array [
     Object {
-      "version": "2.5.7.10213",
+      "releaseTimestamp": "2014-11-03T06:24:59.217+00:00",
+      "version": "3.0.0-alpha-2",
     },
     Object {
-      "version": "2.5.9.10348",
+      "releaseTimestamp": "2014-11-29T22:38:18.493+00:00",
+      "version": "3.0.0-alpha-3",
     },
     Object {
-      "version": "2.5.10.11092",
+      "releaseTimestamp": "2014-12-31T04:47:39.507+00:00",
+      "version": "3.0.0-alpha-4",
     },
     Object {
-      "version": "2.6.0.12054",
+      "releaseTimestamp": "2015-01-31T22:13:01.997+00:00",
+      "version": "3.0.0-alpha-5",
     },
     Object {
-      "version": "2.6.1",
+      "releaseTimestamp": "2015-03-26T11:33:22.173+00:00",
+      "version": "3.0.0-beta-1",
     },
     Object {
-      "version": "2.6.2",
+      "releaseTimestamp": "2015-05-13T00:51:22.43+00:00",
+      "version": "3.0.0-beta-2",
     },
     Object {
-      "version": "2.6.3",
+      "releaseTimestamp": "2015-07-15T23:44:47.403+00:00",
+      "version": "3.0.0-beta-3",
     },
     Object {
-      "version": "2.6.4",
+      "releaseTimestamp": "2015-08-25T23:24:11.473+00:00",
+      "version": "3.0.0-beta-4",
     },
     Object {
-      "version": "2.6.5",
+      "releaseTimestamp": "2015-10-17T03:39:18.1+00:00",
+      "version": "3.0.0-beta-5",
     },
     Object {
-      "version": "2.6.6",
+      "releaseTimestamp": "2015-11-01T21:56:49.637+00:00",
+      "version": "3.0.0-rc",
     },
     Object {
-      "version": "2.6.7",
+      "releaseTimestamp": "2015-11-08T16:27:15.11+00:00",
+      "version": "3.0.0-rc-2",
     },
     Object {
-      "version": "2.7.0",
+      "releaseTimestamp": "2015-11-14T05:30:57.323+00:00",
+      "version": "3.0.0-rc-3",
     },
     Object {
+      "releaseTimestamp": "2015-11-16T00:02:51.807+00:00",
       "version": "3.0.0",
     },
     Object {
+      "releaseTimestamp": "2015-12-02T03:52:57.997+00:00",
       "version": "3.0.1",
     },
     Object {
+      "releaseTimestamp": "2016-03-05T21:12:58.99+00:00",
       "version": "3.2.0",
     },
     Object {
+      "releaseTimestamp": "2016-04-19T15:31:13.39+00:00",
       "version": "3.2.1",
     },
     Object {
+      "releaseTimestamp": "2016-06-25T17:44:56.253+00:00",
       "version": "3.4.0",
     },
     Object {
+      "releaseTimestamp": "2016-06-30T21:20:49.497+00:00",
       "version": "3.4.1",
     },
     Object {
+      "releaseTimestamp": "2016-10-04T01:19:19.447+00:00",
       "version": "3.5.0",
     },
     Object {
+      "releaseTimestamp": "2017-01-10T02:17:19.187+00:00",
       "version": "3.6.0",
     },
     Object {
+      "releaseTimestamp": "2017-02-26T14:56:04.407+00:00",
       "version": "3.6.1",
     },
     Object {
+      "releaseTimestamp": "2017-05-30T00:07:36.707+00:00",
       "version": "3.7.0",
     },
     Object {
+      "releaseTimestamp": "2017-06-06T01:59:11.787+00:00",
       "version": "3.7.1",
     },
     Object {
+      "releaseTimestamp": "2017-08-28T00:08:29.5+00:00",
       "version": "3.8.0",
     },
     Object {
+      "releaseTimestamp": "2017-08-29T01:11:58.86+00:00",
       "version": "3.8.1",
     },
     Object {
+      "releaseTimestamp": "2017-11-10T23:35:19.67+00:00",
       "version": "3.9.0",
     },
     Object {
+      "releaseTimestamp": "2018-03-13T00:29:56.4+00:00",
       "version": "3.10.0",
     },
     Object {
+      "releaseTimestamp": "2018-03-13T03:13:09.93+00:00",
       "version": "3.10.1",
     },
     Object {
+      "releaseTimestamp": "2018-10-07T01:17:31.31+00:00",
       "version": "3.11.0",
     },
     Object {
+      "releaseTimestamp": "2019-05-15T00:24:28.39+00:00",
       "version": "3.12.0",
     },
   ],
@@ -1044,11 +1839,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
   Object {
     "headers": Object {
@@ -1057,7 +1852,7 @@ Array [
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api.nuget.org/v3-flatcontainer/nunit/3.11.0/nunit.nuspec",
+    "url": "https://api.nuget.org/v3-flatcontainer/nunit/3.12.0/nunit.nuspec",
   },
   Object {
     "headers": Object {
@@ -1073,11 +1868,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=nunit",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
 ]
 `;
@@ -1242,11 +2037,11 @@ Array [
     "headers": Object {
       "accept": "application/json",
       "accept-encoding": "gzip, deflate",
-      "host": "api-v2v3search-0.nuget.org",
+      "host": "api.nuget.org",
       "user-agent": "https://github.com/renovatebot/renovate",
     },
     "method": "GET",
-    "url": "https://api-v2v3search-0.nuget.org/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true",
+    "url": "https://api.nuget.org/v3/registration5-gz-semver2/nunit/index.json",
   },
 ]
 `;
diff --git a/lib/datasource/nuget/index.spec.ts b/lib/datasource/nuget/index.spec.ts
index 77a97be25da409a797d19d44a7b40a6fd2251184..c7a3ab2025ce40ca3fb18ddad0fd165802d4065e 100644
--- a/lib/datasource/nuget/index.spec.ts
+++ b/lib/datasource/nuget/index.spec.ts
@@ -9,58 +9,84 @@ const hostRules: any = _hostRules;
 
 jest.mock('../../util/host-rules');
 
-const pkgListV3 = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV3.json',
-  'utf8'
-);
-const pkgListV3WithoutProkjectUrl = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV3_withoutProjectUrl.json',
-  'utf8'
-);
-const pkgListV3NoGitHubProjectUrl = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV3_noGitHubProjectUrl.json',
-  'utf8'
-);
-const pkgListV3PrivateFeed = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV3_privateFeed.json',
+const pkgInfoV3FromNuget = fs.readFileSync(
+  'lib/datasource/nuget/__fixtures__/nunit/v3_nuget_org.xml',
   'utf8'
 );
-const pkgInfoV3FromNuget = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitv3_nuget-org.xml',
+const pkgListV3Registration = fs.readFileSync(
+  'lib/datasource/nuget/__fixtures__/nunit/v3_registration.json',
   'utf8'
 );
 
 const pkgListV2 = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2.xml',
   'utf8'
 );
 const pkgListV2NoGitHubProjectUrl = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2_noGitHubProjectUrl.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2_noGitHubProjectUrl.xml',
   'utf8'
 );
 const pkgListV2NoRelease = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2_no_release.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2_no_release.xml',
   'utf8'
 );
 const pkgListV2WithoutProjectUrl = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2_withoutProjectUrl.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2_withoutProjectUrl.xml',
   'utf8'
 );
 
 const pkgListV2Page1of2 = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2_paginated_1.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2_paginated_1.xml',
   'utf8'
 );
 const pkgListV2Page2of2 = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/nunitV2_paginated_2.xml',
+  'lib/datasource/nuget/__fixtures__/nunit/v2_paginated_2.xml',
   'utf8'
 );
 
 const nugetIndexV3 = fs.readFileSync(
-  'lib/datasource/nuget/__fixtures__/indexV3.json',
+  'lib/datasource/nuget/__fixtures__/v3_index.json',
   'utf8'
 );
 
+const nlogMocks = [
+  {
+    url: '/v3/registration5-gz-semver2/nlog/index.json',
+    result: fs.readFileSync(
+      'lib/datasource/nuget/__fixtures__/nlog/v3_registration.json',
+      'utf8'
+    ),
+  },
+  {
+    url: '/v3/registration5-gz-semver2/nlog/page/1.0.0.505/4.4.0-beta5.json',
+    result: fs.readFileSync(
+      'lib/datasource/nuget/__fixtures__/nlog/v3_catalog_1.json',
+      'utf8'
+    ),
+  },
+  {
+    url: '/v3/registration5-gz-semver2/nlog/page/4.4.0-beta6/4.6.0-rc2.json',
+    result: fs.readFileSync(
+      'lib/datasource/nuget/__fixtures__/nlog/v3_catalog_2.json',
+      'utf8'
+    ),
+  },
+  {
+    url: '/v3/registration5-gz-semver2/nlog/page/4.6.0-rc3/5.0.0-beta11.json',
+    result: fs.readFileSync(
+      'lib/datasource/nuget/__fixtures__/nlog/v3_catalog_3.json',
+      'utf8'
+    ),
+  },
+  {
+    url: '/v3-flatcontainer/nlog/4.7.3/nlog.nuspec',
+    result: fs.readFileSync(
+      'lib/datasource/nuget/__fixtures__/nlog/nuspec.xml',
+      'utf8'
+    ),
+  },
+];
+
 const configV3V2 = {
   datasource,
   versioning,
@@ -149,10 +175,8 @@ describe('datasource/nuget', () => {
       httpMock
         .scope('https://api.nuget.org')
         .get('/v3/index.json')
-        .reply(200, JSON.parse(nugetIndexV3));
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true')
+        .reply(200, JSON.parse(nugetIndexV3))
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
         .reply(500);
 
       const res = await getPkgReleases({
@@ -166,11 +190,9 @@ describe('datasource/nuget', () => {
       httpMock
         .scope('https://api.nuget.org')
         .get('/v3/index.json')
-        .reply(200, JSON.parse(nugetIndexV3));
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true')
-        .reply(200, JSON.parse('{"totalHits": 0}'));
+        .reply(200, JSON.parse(nugetIndexV3))
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
+        .reply(200, {});
 
       const res = await getPkgReleases({
         ...configV3,
@@ -286,14 +308,11 @@ describe('datasource/nuget', () => {
         .scope('https://api.nuget.org')
         .get('/v3/index.json')
         .reply(200, JSON.parse(nugetIndexV3))
-        .get('/v3-flatcontainer/nunit/3.11.0/nunit.nuspec')
-        .reply(200, pkgInfoV3FromNuget);
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true')
-        .reply(200, JSON.parse(pkgListV3))
-        .get('/query?q=nunit')
-        .reply(200, JSON.parse(pkgListV3PrivateFeed));
+        .get('/v3-flatcontainer/nunit/3.12.0/nunit.nuspec')
+        .reply(200, pkgInfoV3FromNuget)
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
+        .twice()
+        .reply(200, pkgListV3Registration);
       httpMock
         .scope('https://myprivatefeed')
         .get('/index.json')
@@ -304,7 +323,7 @@ describe('datasource/nuget', () => {
       });
       expect(res).not.toBeNull();
       expect(res).toMatchSnapshot();
-      expect(res.releases).toHaveLength(30);
+      expect(res.releases).toHaveLength(45);
       expect(httpMock.getTrace()).toMatchSnapshot();
     });
     it('returns null for unknown error in getReleasesFromV3Feed (v3)', async () => {
@@ -323,10 +342,8 @@ describe('datasource/nuget', () => {
       httpMock
         .scope('https://api.nuget.org')
         .get('/v3/index.json')
-        .reply(200, JSON.parse(nugetIndexV3));
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true')
+        .reply(200, JSON.parse(nugetIndexV3))
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
         .replyWithError('');
       expect(
         await getPkgReleases({
@@ -354,12 +371,10 @@ describe('datasource/nuget', () => {
         .scope('https://api.nuget.org')
         .get('/v3/index.json')
         .reply(200, JSON.parse(nugetIndexV3))
-        .get('/v3-flatcontainer/nunit/3.11.0/nunit.nuspec')
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
+        .reply(200, pkgListV3Registration)
+        .get('/v3-flatcontainer/nunit/3.12.0/nunit.nuspec')
         .reply(200, pkgInfoV3FromNuget);
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=PackageId:nunit&semVerLevel=2.0.0&prerelease=true')
-        .reply(200, JSON.parse(pkgListV3));
       const res = await getPkgReleases({
         ...configV3,
       });
@@ -368,73 +383,39 @@ describe('datasource/nuget', () => {
       expect(res.sourceUrl).toBeDefined();
       expect(httpMock.getTrace()).toMatchSnapshot();
     });
-    it('processes real data (v3) feed is not a nuget.org', async () => {
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=nunit')
-        .reply(200, JSON.parse(pkgListV3));
-      httpMock
-        .scope('https://myprivatefeed')
-        .get('/index.json')
-        .reply(200, JSON.parse(nugetIndexV3));
-
-      const res = await getPkgReleases({
-        ...configV3NotNugetOrg,
-      });
-      expect(res).not.toBeNull();
-      expect(res).toMatchSnapshot();
-      expect(res.sourceUrl).toBeDefined();
-      expect(httpMock.getTrace()).toMatchSnapshot();
-    });
-    it('processes real data (v3) feed is not a nuget.org with mismatch', async () => {
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=nun')
-        .reply(200, JSON.parse(pkgListV3));
-      httpMock
-        .scope('https://myprivatefeed')
-        .get('/index.json')
+    it('processes real data (v3) for several catalog pages', async () => {
+      const scope = httpMock
+        .scope('https://api.nuget.org')
+        .get('/v3/index.json')
         .reply(200, JSON.parse(nugetIndexV3));
-      const res = await getPkgReleases({
-        ...configV3NotNugetOrg,
-        datasource,
-        versioning,
-        depName: 'nun',
+      nlogMocks.forEach(({ url, result }) => {
+        scope.get(url).reply(200, result);
       });
-      expect(res).toBeNull();
-      expect(httpMock.getTrace()).toMatchSnapshot();
-    });
-    it('processes real data without project url (v3)', async () => {
-      httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=nunit')
-        .reply(200, JSON.parse(pkgListV3WithoutProkjectUrl));
-      httpMock
-        .scope('https://myprivatefeed')
-        .get('/index.json')
-        .reply(200, JSON.parse(nugetIndexV3));
       const res = await getPkgReleases({
-        ...configV3NotNugetOrg,
+        ...configV3,
+        depName: 'nlog',
       });
       expect(res).not.toBeNull();
       expect(res).toMatchSnapshot();
-      expect(res.sourceUrl).not.toBeDefined();
+      expect(res.sourceUrl).toBeDefined();
       expect(httpMock.getTrace()).toMatchSnapshot();
     });
-    it('processes real data with no github project url (v3)', async () => {
+    it('processes real data (v3) feed is not a nuget.org', async () => {
       httpMock
-        .scope('https://api-v2v3search-0.nuget.org')
-        .get('/query?q=nunit')
-        .reply(200, JSON.parse(pkgListV3NoGitHubProjectUrl));
+        .scope('https://api.nuget.org')
+        .get('/v3/registration5-gz-semver2/nunit/index.json')
+        .reply(200, pkgListV3Registration);
       httpMock
         .scope('https://myprivatefeed')
         .get('/index.json')
         .reply(200, JSON.parse(nugetIndexV3));
+
       const res = await getPkgReleases({
         ...configV3NotNugetOrg,
       });
       expect(res).not.toBeNull();
       expect(res).toMatchSnapshot();
+      expect(res.sourceUrl).toBeDefined();
       expect(httpMock.getTrace()).toMatchSnapshot();
     });
     it('processes real data (v2)', async () => {
diff --git a/lib/datasource/nuget/index.ts b/lib/datasource/nuget/index.ts
index 48326b8d5ff01ac39eebb3aea971eee6c488c1b5..8280694c0e08f59085f710ac3bd4d462e663cb81 100644
--- a/lib/datasource/nuget/index.ts
+++ b/lib/datasource/nuget/index.ts
@@ -40,7 +40,7 @@ export async function getReleases({
     return v2.getReleases(feedUrl, lookupName);
   }
   if (protocolVersion === 3) {
-    const queryUrl = await v3.getQueryUrl(feedUrl);
+    const queryUrl = await v3.getResourceUrl(feedUrl);
     if (queryUrl !== null) {
       return v3.getReleases(feedUrl, queryUrl, lookupName);
     }
diff --git a/lib/datasource/nuget/v3.ts b/lib/datasource/nuget/v3.ts
index 9dc39ca8392649c2db9405c8238e4d4100746fd3..d94c3c002e5a6fcf79e64b5d2e7d3b0e73ca6bd3 100644
--- a/lib/datasource/nuget/v3.ts
+++ b/lib/datasource/nuget/v3.ts
@@ -1,9 +1,10 @@
+import pAll from 'p-all';
 import * as semver from 'semver';
 import { XmlDocument } from 'xmldoc';
 import { logger } from '../../logger';
 import * as packageCache from '../../util/cache/package';
 import { Http } from '../../util/http';
-import { ReleaseResult } from '../common';
+import { Release, ReleaseResult } from '../common';
 
 import { id } from './common';
 
@@ -17,11 +18,23 @@ export function getDefaultFeed(): string {
   return defaultNugetFeed;
 }
 
-export async function getQueryUrl(url: string): Promise<string | null> {
-  // https://docs.microsoft.com/en-us/nuget/api/search-query-service-resource
-  const resourceType = 'SearchQueryService';
-  const cacheKey = `${url}:${resourceType}`;
-  const cachedResult = await packageCache.get<string>(cacheNamespace, cacheKey);
+interface ServicesIndexRaw {
+  resources: {
+    '@id': string;
+    '@type': string;
+  }[];
+}
+
+export async function getResourceUrl(
+  url: string,
+  resourceType = 'RegistrationsBaseUrl'
+): Promise<string | null> {
+  // https://docs.microsoft.com/en-us/nuget/api/service-index
+  const resultCacheKey = `${url}:${resourceType}`;
+  const cachedResult = await packageCache.get<string>(
+    cacheNamespace,
+    resultCacheKey
+  );
 
   // istanbul ignore if
   if (cachedResult) {
@@ -29,97 +42,142 @@ export async function getQueryUrl(url: string): Promise<string | null> {
   }
 
   try {
-    // TODO: fix types
-    const servicesIndexRaw = await http.getJson<any>(url);
-    const searchQueryService = servicesIndexRaw.body.resources.find(
-      (resource) => resource['@type']?.startsWith(resourceType)
-    );
-    const searchQueryServiceId = searchQueryService['@id'];
-
-    const cacheMinutes = 60;
-    await packageCache.set(
+    const responseCacheKey = url;
+    let servicesIndexRaw = await packageCache.get<ServicesIndexRaw>(
       cacheNamespace,
-      cacheKey,
-      searchQueryServiceId,
-      cacheMinutes
+      responseCacheKey
     );
-    return searchQueryServiceId;
+    if (!servicesIndexRaw) {
+      servicesIndexRaw = (await http.getJson<ServicesIndexRaw>(url)).body;
+      await packageCache.set(
+        cacheNamespace,
+        resultCacheKey,
+        servicesIndexRaw,
+        3 * 24 * 60
+      );
+    }
+
+    const services = servicesIndexRaw.resources
+      .map(({ '@id': serviceId, '@type': t }) => ({
+        serviceId,
+        type: t?.split('/')?.shift(),
+        version: t?.split('/')?.pop(),
+      }))
+      .filter(
+        ({ type, version }) => type === resourceType && semver.valid(version)
+      )
+      .sort((x, y) => semver.compare(x.version, y.version));
+    const { serviceId, version } = services.pop();
+
+    // istanbul ignore if
+    if (
+      resourceType === 'RegistrationsBaseUrl' &&
+      !semver.satisfies(version, '^3.0.0')
+    ) {
+      logger.warn(`Nuget: RegistrationsBaseUrl/${version} is the major update`);
+    }
+
+    await packageCache.set(cacheNamespace, resultCacheKey, serviceId, 60);
+    return serviceId;
   } catch (e) {
     logger.debug(
       { e },
-      `nuget registry failure: can't get SearchQueryService form ${url}`
+      `nuget registry failure: can't get ${resourceType} form ${url}`
     );
     return null;
   }
 }
 
+interface CatalogEntry {
+  version: string;
+  published?: string;
+  projectUrl?: string;
+}
+
+interface CatalogPage {
+  '@id': string;
+  items: {
+    catalogEntry: CatalogEntry;
+  }[];
+}
+
+interface PackageRegistration {
+  items: CatalogPage[];
+}
+
+async function getCatalogEntry(
+  catalogPage: CatalogPage
+): Promise<CatalogEntry[]> {
+  let items = catalogPage.items;
+  if (!items) {
+    const url = catalogPage['@id'];
+    const catalogPageFull = await http.getJson<CatalogPage>(url);
+    items = catalogPageFull.body.items;
+  }
+  return items.map(({ catalogEntry }) => catalogEntry);
+}
+
 export async function getReleases(
   registryUrl: string,
   feedUrl: string,
   pkgName: string
 ): Promise<ReleaseResult | null> {
-  let queryUrl = `${feedUrl}?q=${pkgName}`;
-  if (registryUrl.toLowerCase() === defaultNugetFeed.toLowerCase()) {
-    queryUrl = queryUrl.replace('q=', 'q=PackageId:');
-    queryUrl += '&semVerLevel=2.0.0&prerelease=true';
+  const url = `${feedUrl.replace(/\/*$/, '')}/${pkgName}/index.json`;
+  const packageRegistration = await http.getJson<PackageRegistration>(url);
+  const catalogPages = packageRegistration.body.items || [];
+  const catalogPagesQueue = catalogPages.map((page) => (): Promise<
+    CatalogEntry[]
+  > => getCatalogEntry(page));
+  const catalogEntries = (
+    await pAll(catalogPagesQueue, { concurrency: 5 })
+  ).flat();
+
+  let homepage = null;
+  let latestStable = null;
+  const releases = catalogEntries.map(
+    ({ version, published: releaseTimestamp, projectUrl }) => {
+      const release: Release = { version };
+      if (releaseTimestamp) {
+        release.releaseTimestamp = releaseTimestamp;
+      }
+      if (semver.valid(version) && !semver.prerelease(version)) {
+        latestStable = version;
+        homepage = projectUrl || homepage;
+      }
+      return release;
+    }
+  );
+
+  if (!releases.length) {
+    return null;
   }
+
   const dep: ReleaseResult = {
     pkgName,
-    releases: [],
+    releases,
   };
-  // TODO: fix types
-  const pkgUrlListRaw = await http.getJson<any>(queryUrl);
-  const match = pkgUrlListRaw.body.data.find(
-    (item) => item.id.toLowerCase() === pkgName.toLowerCase()
-  );
-  // https://docs.microsoft.com/en-us/nuget/api/search-query-service-resource#search-result
-  if (!match) {
-    // There are no pkgName or releases in current feed
-    return null;
-  }
-  dep.releases = match.versions.map((item) => ({
-    version: item.version,
-  }));
 
-  try {
-    // For nuget.org we have a way to get nuspec file
-    const sanitizedVersions = dep.releases
-      .map((release) => semver.valid(release.version))
-      .filter(Boolean)
-      .filter((version) => !semver.prerelease(version));
-    let lastVersion: string;
-    // istanbul ignore else
-    if (sanitizedVersions.length) {
-      // Use the last stable version we found
-      lastVersion = sanitizedVersions.pop();
-    } else {
-      // Just use the last one from the list and hope for the best
-      lastVersion = [...dep.releases].pop().version;
-    }
-    if (registryUrl.toLowerCase() === defaultNugetFeed.toLowerCase()) {
-      const nugetOrgApi = `https://api.nuget.org/v3-flatcontainer/${pkgName.toLowerCase()}/${lastVersion}/${pkgName.toLowerCase()}.nuspec`;
-      let metaresult: { body: string };
-      try {
-        metaresult = await http.get(nugetOrgApi);
-      } catch (err) /* istanbul ignore next */ {
-        logger.debug(
-          `Cannot fetch metadata for ${pkgName} using popped version ${lastVersion}`
-        );
-        return dep;
-      }
+  if (registryUrl.toLowerCase() === defaultNugetFeed.toLowerCase()) {
+    try {
+      const nuspecUrl = `https://api.nuget.org/v3-flatcontainer/${pkgName.toLowerCase()}/${latestStable}/${pkgName.toLowerCase()}.nuspec`;
+      const metaresult = await http.get(nuspecUrl);
       const nuspec = new XmlDocument(metaresult.body);
       const sourceUrl = nuspec.valueWithPath('metadata.repository@url');
       if (sourceUrl) {
         dep.sourceUrl = sourceUrl;
       }
-    } else if (match.projectUrl) {
-      dep.sourceUrl = match.projectUrl;
+    } catch (err) /* istanbul ignore next */ {
+      logger.debug(
+        `Cannot obtain sourceUrl for ${pkgName} using version ${latestStable}`
+      );
+      return dep;
     }
-  } catch (err) /* istanbul ignore next */ {
-    logger.debug(
-      { err, pkgName, feedUrl },
-      `nuget registry failure: can't parse pkg info for project url`
-    );
+  } else if (homepage) {
+    dep.sourceUrl = homepage;
+  }
+
+  if (homepage) {
+    dep.homepage = homepage;
   }
 
   return dep;