我想知道我在mac上安装了nuget
的版本。我不确定它的安装位置,所以我很难找到它,Nuget Command Line help page主要涉及安装包而不是实际的nuget包本身。
这可能吗?
答案 0 :(得分:3)
O.k。我发现了怎么做。如果您输入
Nuget ?
它将打印所有可用命令,Nuget版本将是打印输出的第一行
这实际上并没有包含在文档中,但是如果它在某个阶段它会在这里:https://docs.nuget.org/consume/command-line-reference#help-command
答案 1 :(得分:1)
我并不完全了解Nuget,但您可以尝试在命令行中找到所有应用程序和版本:
system_profiler SPApplicationsDataType
然后执行cmd + f查找Nuget。
希望它适合你。
答案 2 :(得分:1)
在Windows上我做:(也应该在Mac上工作)
nuget ? v
" v"命令实际上是无效的,但是使用这种方法,你只能获得nuget版本号,并且只能获得" v"是一个未知的命令。
Mac PowerShell:
nuget help | head -1
Windows PowerShell:
nuget help | select -First 1
答案 3 :(得分:0)
$ host命令用于查找NuGet的版本。
检查一下:
https://docs.microsoft.com/en-us/nuget/policies/nuget-faq
从链接剪辑:
How do I check the exact version of NuGet installed?
In Visual Studio, use the Help > About Microsoft Visual Studio command and look at the version displayed next to NuGet Package Manager.
Alternatively, launch the Package Manager Console (Tools > NuGet Package Manager > Package Manager Console) and enter $host to see information about NuGet including the version.