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.

The
Installedshould be easy to explain, when you choose a specific NuGet package, the version of this NuGet package will be listed in theInstalledcolumn, 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
Versionrepresents the same thing(Installed). First of all, theVersioncolumn 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. ThisVersionwill match the version that set in the project’s project file(.xxproj file), even if the specific version(set in.xxprojfile) of the NuGet package is not installed. But normally, it lists the same version number withInstalledcolumn.For example(in .xxproj file):
So obviously, the
Versioncolumn lists the version number of the NuGet packages which you are using(want to use), and theInstalledcolumn 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:
If the specific version of NuGet package you have installed in the project, then the version number will be listed in
Installedcolumn, if not, it will be blank, and theInstalledcolumn is more likely to show that you have installed this version of NuGet package.The version number listed in
Versioncolumn matches theVersionproperty setting in.xxprojfile, and is more likely to show that you are using this version of NuGet package.This two columns are usually show the same version number for one specific project.
.NET Framework based project will not list the version number in
Versioncolumn. 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.I believe this is not very important unless you see that they are different in two columns for one project.