3

I followed the Creating Remote Feeds directions at nuget.org to create a server. I created a .NET 4.0 project and imported the NuGet.Server package, put my own NuGet package file in /Packages and ran it as an ASP.Net 4.0 application under IIS 7.5. Everything seems to work except that I get a 404 message if I try to view the package feed at ~/nuget. It seems that the atom feed isn't getting started at all.

NightWatchman
  • 1,217
  • 5
  • 17
  • 25

1 Answers1

2

Have you tried ~/nuget/Packages? Can you verify the routes are added to your application on startup?

On a sidenote, it may be worth exploring MyGet or ProGet as alternatives to your own feed as well.

maartenba
  • 3,344
  • 18
  • 31