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

后端 未结 2 2174
礼貌的吻别
礼貌的吻别 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.

提交回复
热议问题