2

I set up and installed the NuGet Gallery via:

localhost:55880

I can manually navigate to the site:

enter image description here

But, when I try to add this URL as a package source in Visual Studio:

enter image description here

And then go to Package Manager Console, I get a 404 Not Found error:

enter image description here

QUESTION: Does anyone know what I'm doing wrong?

Mike Marks
  • 10,017
  • 17
  • 69
  • 128

1 Answers1

2

The feed itself is located at http://localhost:55880/api/v2. It should be on the page you took a screenshot of.

Mike Marks
  • 10,017
  • 17
  • 69
  • 128
user247702
  • 23,641
  • 15
  • 110
  • 157
  • That did it, with the exception of I had to omit the "nuget" part of the path you describe above. Thanks!!! I have to remember MVC routing! – Mike Marks Jul 03 '13 at 15:49