Find Nuget package source repository
According to the Find-Package:
Gets the set of remote packages with specified ID or keywords from the package source.
So, the default behavior of this command line is that search all package source, then only return Package ID
, Versions
, Description
without package source of the highest version package.
Return result looks like:
Id Versions Description
-- -------- -----------
Newtonsoft.Json {11.0.1} Json.NET is a popular high-performance JSON framework for .NET
Time Elapsed: 00:00:00.0206440
Fortunately, there is a parameters Source of the syntax Find-Package, you can find the nuget package from the specified source, like:
find-package Newtonsoft.Json -source nuget.org
Or you just repeat the same command line find-package NLog
with different package source selected in the Package Manager Console:

Hope this helps.