We have an internal Nuget server that hosts the packages. Prior to Update 2, we were able to view all packages hosted on this server, for example:

After upgrading to VS Update 2, we can only see a subset of these packages.

Using the command find-packagein the package manager console, the results are as follows:
PM> find-package
Id Versions Description
-- -------- -----------
Core.v35 {1.2.27} StrongDateTime and Settings
Core.v40.Logging {1.2.1} Logging library
Core.v40.MessageBus {1.2.1} Wrapper for message broker access
Core.v40.NLog.Extensions {1.2.7} Alternative to Core.v40.Logging, Nlog with message bus target extension
PM> find-package ptsr
Id Versions Description
-- -------- -----------
PtSR {3.1.5} PowerTools Shared References, used to communicate with the PowerTools Platform
PM> find-package ptvp
Id Versions Description
-- -------- -----------
PtVP.v2 {3.1.5} PowerTools Viewports, used for working with PowerTools data through viewports
As you can see, there are packages ptsrand ptvp, but find-packagethey are not displayed during execution . We can Install-Packagealso work,
Does anyone know about this? Any others experience the same thing?
source
share