有没有办法从Package Manager控制台获取包的完整描述

时间:2011-02-18 01:18:10

标签: nuget nuget-package

运行命令时

Get-Package -Remote StructureMap-MVC3 

在NuGet的程序包管理器控制台中,它返回以下内容以及截断的程序包的说明。

Id                                                                                  Version                                                                             Description                                                                        
--                                                                                  -------                                                                             -----------                                                                        
StructureMap-MVC3                                                                   1.0.1                                                                               Adds the latest version of structuremap and configures it as the default Depende...
StructureMap-MVC3                                                                   1.0.2                                                                               Adds the latest version of structuremap and configures it as the default Depende...

有没有办法从控制台查询包的完整描述?

2 个答案:

答案 0 :(得分:14)

是的,如果你这样写的话就可以了:

Get-Package -Remote StructureMap-MVC3 | fl

默认情况下,我们以简洁的方式显示结果,因此更多的东西适合较小的空间fl(格式列表的缩写)将在详细信息视图中显示属性。

答案 1 :(得分:14)

您可以获得标准输出,第一列的大小适合这样:

Get-Package | ft -AutoSize

它将确保您所需的所有信息都可见。