Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 240
Eric Ziko Avatar asked Feb 18 '11 01:02

Eric Ziko


1 Answers

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.

like image 77
davidfowl Avatar answered Oct 12 '22 22:10

davidfowl