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

后端 未结 2 2173
礼貌的吻别
礼貌的吻别 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:18

    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 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题