Background:
- VS 2010
- C# 3.5
- Windows 7 SP1
ASP.NET web app is powered by IIS 7 in dev environment.
When I build a single project, not the “web” project, it looks like the web app is restarted. Changes made to the DLL are not taken into account since the new DLL is not deployed to bin of web project. So, why is the wep app restarted (page takes a lot of time to load)?
If your
Projectis dependent on some other project, it will restart again.So to solve this, Please remove the project dependency from solution and try to build again.
But now you have to place the dlls manually to the other project.