Search code examples
.net.net-corenugetvisual-studio-2019manage-nuget-packages

What is the significance of the 'Version' column in Visual Studio NugetPackageManager interface? (as distinct from the 'Installed' column)


enter image description here

The 'Installed' column is populated, but the 'Version' column isn't.

What does the 'Version' column mean? (As distinct from the 'Installed' column)

(I'm familiar with the concept of Semantic Versions; so I know exactly what the concept of a version number means for a nuget package. I'm asking for exactly what does that column in that interface mean.)


Follow-up question about blankness is over here.


Solution

  • The Installed should be easy to explain, when you choose a specific NuGet package, the version of this NuGet package will be listed in the Installed column, and only listing for the project(s) which has/have it installed. So if one project doesn’t install this NuGet package, then it will show blank.

    Normally, the Version represents the same thing(Installed). First of all, the Version column should only display/list version number of the NuGet which is installed in/for .NET Standard, .NET Core or .NET projects, and for .NET Framework project it won’t list. This Version will match the version that set in the project’s project file(.xxproj file), even if the specific version(set in .xxproj file) of the NuGet package is not installed. But normally, it lists the same version number with Installed column.

    For example(in .xxproj file):

    <ItemGroup>
        <PackageReference Include="LochNessBuilder" Version="3.0.0-alpha" />
    </ItemGroup>
    

    So obviously, the Version column lists the version number of the NuGet packages which you are using(want to use), and the Installed column lists the version number of the NuGet packages which you have installed(or prepared to use, as maybe there exist multiple versions of the same NuGet package which were installed).

    I think this can be summarized as:

    1. If the specific version of NuGet package you have installed in the project, then the version number will be listed in Installed column, if not, it will be blank, and the Installed column is more likely to show that you have installed this version of NuGet package.

    2. The version number listed in Version column matches the Version property setting in .xxproj file, and is more likely to show that you are using this version of NuGet package.

    3. This two columns are usually show the same version number for one specific project.

    4. .NET Framework based project will not list the version number in Version column. It will only list for .NET Core, .NET Standard and .NET project. The reason should be related to the different structures of these framework based project/project template, and the different mechanism of how to install/copy/store/use NuGet packages.

    5. I believe this is not very important unless you see that they are different in two columns for one project.