Download old version of package with nuget -
is there way download previous version of package nuget, not latest one?
bring package manager console in visual studio - it's in tools / nuget package manager / package manager console. run install-package command:
install-package common.logging -version 1.2.0 see command reference details.
edit: in order list versions of package can use get-package command the remote argument and filter:
get-package -listavailable -filter common.logging -allversions by pressing tab after version option in install-package command, list of latest available versions.
Comments
Post a Comment