I have two web projects that I want to run in the same domain in VS2010. How do I do this, still keep edit and continue, and still load Http Modules?
I tried the following:
- specifying the same port in project settings with different virtual paths on Visual Studio Development Server, but the second project won't start.
- Local IIS 7.5 Server, but it won't let me edit and continue, and my HTTP Module projects aren't loaded.
- Local IIS Express, but my HTTP Module projects aren't loaded.
I finally found a way:
Use IIS Express and change the managed pipeline mode to classic (instructions: https://stackoverflow.com/a/5918197/2503659) so that HTTP modules will be loaded.