有没有办法从包管理器控制台获取包的完整描述
在 NuGet 的包管理器控制台中运行命令时
Get-Package -Remote StructureMap-MVC3
,它会返回以下内容以及被截断的包的描述。
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...
有没有办法从控制台查询包的完整描述?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,如果您编写如下内容,则可以:
默认情况下,我们以简洁的方式显示结果,以便在更小的空间中容纳更多内容 fl(格式列表的缩写)将在详细信息视图中显示属性。
Yes you can if you write something like this:
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.
您可以获得标准输出,第一列的大小适合如下所示
: ft -AutoSize
它将确保您需要的所有信息都是可见的。
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.