Updating web.config with an MSBUILD task
I'm using an Web Deployment project to do a few post build tasks on a website I'm deploying. I want to use a FileUpdate task to update my web.config and change the compilation mode from debug="true" to debug="false". So, from this <compilation defaultLanguage="c#" debug="true" /> To this <compilation defaultLangua...