I have a solution with 10+ web applications and a few class libraries. The web applications are modules of the same web site, so they run all in the same address, but in different physical folders. One of the web applications (the parent) holds the web.config file, the global.asax file, and a few necessary classes (the parent project is referenced).
If I publish the parent web application and a module web application to the IIS folder it works perfectly, but I can't debug the project locally because the child web application doesn't have a global.asax and web.config, so I need to copy then everytime I need to debug locally.
Is there a solution for this problem?