有没有办法从包管理器控制台获取包的完整描述

有没有办法从包管理器控制台获取包的完整描述

问题描述:

运行命令时

Get-Package -Remote StructureMap-MVC3 

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

In the Package Manager Console for NuGet, it returns the following with the descriptions for the packages truncated.

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...

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

Is there a way to query the full description of the package from the console?

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

You can get the standard output, with the first column sized to fit like this:

Get-Package |ft -AutoSize

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

It will ensure all the information you need is visible.