Can we have the option in the WDP GUI of deleting the web.config replacement files from the output directory after the sections in web.config have been replaced?
Try this in the wdproj file:
<Target Name="AfterBuild"> <Delete Files="$(OutputPath)\yourconfig.config"></Delete> </Target>
replace yourconfig.config with the name of your config file
This functionality is currently not supported in the UI. You will have to create your own custom AfterBuild task as suggested.