开发者

Is there a way to get the FULL description of a package from the Package Manager console

开发者 https://www.devze.com 2023-02-11 09:04 出处:网络
When running the command Get-Package -Remote StructureMap-MVC3 In the Package Manager Console for NuGet, it returns the following with the descriptions for the packages truncated.

When running the command

Get-Package -Remote StructureMap-MVC3 

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?


Yes you can if you write something like this:

Get-Package -Remote StructureMap-MVC3 | fl

By default we show results in a concise way so more things fit in a smaller space fl (short for format list) will show the properties in a details view.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消