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

后端 未结 2 2172
礼貌的吻别
礼貌的吻别 2021-02-20 09:27

When running the command

Get-Package -Remote StructureMap-MVC3 

In the Package Manager Console for NuGet, it returns the following with the des

2条回答
  •  抹茶落季
    2021-02-20 10:19

    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.

提交回复
热议问题