Nuget sources update fails to update -


following nuget command line reference, update internal nuget source url new url. update fails.

execute

nuget sources

output

  1. nuget.org [enabled] http://www.nuget.org/api/v2
  2. internalfeed [enabled] http://oldserver:8888/nuget

execute

  • nuget sources update -name internalfeed -source http://newserver:8888/nuget

package source "internalfeed" updated.

  • nuget sources

output

  1. nuget.org [enabled] http://www.nuget.org/api/v2
  2. internalfeed [enabled] http://oldserver:8888/nuget

expected output

  1. nuget.org [enabled] http://www.nuget.org/api/v2
  2. internalfeed [enabled] http://newserver:8888/nuget

actual output not match expected output. how can update internalfeed url?

there file in root directory called nuget.config. file contained oldserver value. removed value nuget.config. update took after making said change.


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -