Deleting the beta survey module caused my portal to fall over... yikes!
After some sleuthing and comparing files, I found it was caused by this bit in the web.config:
<codeSubDirectories>
<add directoryName="Survey" />
</codeSubDirectories>
So I changed it back to this from a backed up web.config:
<!-- register your app_code subfolders to generate granular assemblies during compilation
<codeSubDirectories>
<add directoryName="sub-directory name"/>
</codeSubDirectories>
-->
And it worked again. So now I'm going to try and delete the module again after restoring from backup. This time I'll remove that bit from the web.config first and see if that stops it falling over.
Ok, that worked, now I'll upload the new module release.. and yep, that uploaded fine.
Does that sound about right.... or will there be something left in a buggy state because of this? I like to keep everything superclean.
Rob