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


when running command

get-package -remote structuremap-mvc3  

in package manager console nuget, returns following descriptions packages truncated.

id                                                                                  version                                                                             description                                                                         --                                                                                  -------                                                                             -----------                                                                         structuremap-mvc3                                                                   1.0.1                                                                               adds latest version of structuremap , configures default depende... structuremap-mvc3                                                                   1.0.2                                                                               adds latest version of structuremap , configures default depende... 

is there way query full description of package console?

yes can if write this:

get-package -remote structuremap-mvc3 | fl 

by default show results in concise way more things fit in smaller space fl (short format list) show properties in details view.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -