Visual Studio Web Server not updating/caching pages

I came across a problem today when visual studio development web server was not updating when compiling new code. After deleting bin folder from my Web project I got this error:

image

The problem was with build output location. For web projects the Output path in web project properties should be just bin not bin\Debug or bin\x86\Debug because web server root folder is your Web project folder.

Comments

Popular posts from this blog

Parse XML to dynamic object in C#

C# Updating GUI from different thread