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

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -