I have an mvc4 web app and am working on my local dev machine using IIS Express.
I used NuGet to add Twitter Bootstrap to my project. This simply adds a few .css files and a few .js files to my project.
At this point, I'm not even adding calls for those scripts ... they simply have been added to my project. However, if I compile and run my app (once again, this i local using IIS Express), the first page loads fine, but subsequent calls (that were working fine) now cause IIS Express to recompile my app.
I created a console app to monitor my web directory and all subdirectories looking for changes or creates to any files in those directories. Nothing gets logged.
I'm further confused by the fact that if I publish the site to my QA server running IIS 7, everything works fine.
So, I'm really stumped as to what is causing IIS Express to recompile my app on each call.
Thanks for whatever help you can offer with this.