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
Post a Comment