After installing Update1 for VS 2015, I had a problem trying to add a local path for Nuget Manager. The message was: "NuGet.Config is invalid, check NuGet.Config"
In my case, it was enough to find nuget.config in the path: C: \ Users \ _my_user_name_ \ AppData \ Roaming \ NuGet \
Nuget.config is empty (but the size is 1KB). I just filled it with content:
<?xml version="1.0" encoding="utf-8"?> <configuration> </configuration>
And the problem in VS did not appear again.
source share