Nuget in Visual Studio 2015 ignores allowedVersions? -


i have mvc5 project uses jquery, included through nuget package manager.
want keep project on 1.x branch.
done using allowedversions attribute in packages.config:

<package id="jquery" version="1.11.1" targetframework="net45" allowedversions="[1.10.2, 2.0.0)" /> 

since switched vs 2015, ignored, nuget suggests 2.1.4 (at time of writing) newer version.
tried variations [1.10.2, 2) , [1.1, 2).
bug or newer mechanism used achieve this?

it's been reported here on nuget project:

https://github.com/nuget/home/issues/1094


Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

javascript - Linking from page A to a specific iframe on page B -

java - Two interface have same method name with different return type -