When you run an application in the debugger, it appears to not apply the transformations to the web.config based on your build selection. Is this the case or am I missing something? It appears to be working just fine if I publish to local IIS, just does not seem to work in the debugger.
A:
after saving the web.config changes then applying full refresh "ctrl + F5" (actually not always required) to the browser you are suppose to get the effect of the changes.
also check the existance of:
<compilation debug="true">
in the web.config file.
jadook
2010-01-24 16:49:31
That was the problem, I did not remove the debug="false" from the transform.
NickLarsen
2010-01-24 21:25:42