有没有办法从包管理器控制台获取包的完整描述

发布于 2024-10-18 00:12:43 字数 1184 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ懵逼小萝莉 2024-10-25 00:12:43

是的,如果您编写如下内容,则可以:

Get-Package -Remote StructureMap-MVC3 | fl

默认情况下,我们以简洁的方式显示结果,以便在更小的空间中容纳更多内容 fl(格式列表的缩写)将在详细信息视图中显示属性。

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.

任谁 2024-10-25 00:12:43

您可以获得标准输出,第一列的大小适合如下所示

: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文