I receive the following error in NuGet Install build step when setting sources to TeamCity\'s NuGet server:
Step 1/4: NuGet install (NuGet Installer) (3s)
[15:1
This appears to be a known issue for TeamCity. The workaround suggests adding the package source via the command line client and then updating those sources with the authorization credentials:
nuget sources add -name [name] -source [feedUrl]
nuget sources update -Name [name] -User [username] -pass [password]
It's my understanding that Nuget will cache those credentials for future requests. I don't know how often that cache is cleared; you may need to run that nget sources update
right before you kick off your build to ensure that the cache is coherent.