After many attempts to set a password, a reset password, or something the only thing that helped me was to add this section to NuGet.Config (located in the .nuget folder for the main solution)
NuGet.Config
<?xml version="1.0" encoding="utf-8"?> <configuration> <solution> <add key="disableSourceControlIntegration" value="false" /> </solution> <packageSourceCredentials> <MySourceName> <add key="Username" value="..." /> <add key="ClearTextPassword" value="..." /> </MySourceName> </packageSourceCredentials> </configuration>
One important notice - for any changes to this file to take effect I had to restart VS
source share