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