Search code examples
visual-studio-2012nuget

I cannot see all versions of a NuGet Pacakge


I am doing some investigation of NuGet to determine if I can use it to distribute various software components. All of these components are C++ based so I'm using CoApp PowerShell Tools to create the NuGet package files. I have placed these .nupkg files on a network folder for distribution. However, when accessing the packages via Visual Studio 2012, I can only see the latest version. Is there a way to view all of the versions of a particular package?

Here is the network folder: Network folder

Here is what I see in Visual Studio 2012: Visual Studio Packages


Solution

  • You're supposed to only see the latest version. If you want to install a specific version, you'll have to use the Package Manager Console.

    Install-Package SYS_STANDARDS -Version 1.3.1.0
    

    If that isn't acceptable for your requirements, then Nuget isn't the best way to distribute your code.