I am trying to create a server to push nuget packages. <br /><br />Steps to reproduce. Windows 8 Ultimate.<br />vs2012 create an empty asp.net application<br />install-package nuget.server (version 2.1.1)<br />change requireApiKey value to false in the web.config<br />select using the Visual Studio Development Server<br />f5 <br />from a command line -<br />nuget.exe list -source http://localhost:30908/nuget/ "this works"<br />nuget.exe push newpackage.nupkg -source http://localhost:30908/<br />package was pushed.<br /><br />Now, stop the application,<br />Change the web properties to run using Local IISWeb server , check User IIS Express.<br />nuget.exe list -source http://localhost:30908/nuget/ "this works"<br />nuget.exe push newpackage.nupkg -source http://localhost:30908/<br />Failed to process request, 'Not Found'.<br />The remote server returned an error: (404) Not Found..
↧