This is how I solved this problem. First, I followed @helgans' comment under his response and still continued to get a link to version 1.0.0 of system.web.optimization in the help folder. I also deleted the dll from the bin folder of my site and the reference version 1.1.0 from another project, but the same problem persists.
When solving the problem, I found that the old version is copied from the library folder in my application (well, I donβt know how to do this). This causes the reference version to remain version 1.0.0, even if I mentioned version 1.1.0 from another project or installed the NuGet package again.
To solve this problem, I did the following:
- I deleted the dll from the Library folder.
- Removed old version link (thanks @helgans)
- Removed dll from bin folder
- Unistall package:
Uninstall-Package Microsoft.AspNet.Web.Optimization -Force - Reinstall package
Now NuGet adds a link to version 1.1.0
source share