Recently, I've tried installing an ASP.NET 4.0 Web Forms Web Application locally...I've copied the Web.config file into the project and launched the following command
Update-Package -Reinstall
So I was expecting that the NuGet Package Manager would install all the packages listed on the packages.config file since he will find out that they're all missing.
But unfortunately, the package manager didn't install all the packages listed on the packages.config file...So I had thousands of build error messages due to missing dependencies.
After a day and half of managing problems with the dependencies versions I'm managed to make it work. But as you know it wasn't an easy task for me since I'm new to this environnement.
I assumed that the NuGet package manager had some issues installing these dependencies.
- How should I proceed to install locally any ASP.NET web application I'm working on ?
- How do I know if a build error is caused by dependecies or their versions ?
- How do I prevent this from happening again ?