A version constraint defined in the packages.config file, as shown
below, is now used when checking for package updates from a package
source. Previously always the latest version of the NuGet package
would be displayed as an update in the Manage Packages dialog.
<package
id="jQuery"
version="1.4.1"
targetFramework="net40"
allowedVersions="[1.4.1,1.8)" />
After updating to jQuery 1.7.2 then no further updates will be shown
in the Manage Packages dialog.
Currently this only works if a project is selected when the Manage
Packages dialog is opened.
1) GetPackagesInstaledInSolution() removed. Duplicate, does nothing,
redirects to public available Solution.GetPackages()
2) IsPackageInstaledInSolution() removed. Duplicate, does nothing,
redirects to public available Solution.IsPackageInstalled()
3) Name GetInstalledPackages() renamed to GetPackages().
Misleading name, all packages are installed in
selected-projects/project/solution.
Or packages exist in repository, where repository can be
available/solution/project/installed.