Rick emailed me about excluding resources after finding my nAnt resources Post. I wasn't sure about this so I googled it. I know that nAnt will automatically compile resx files as resources. Actually, I am not entirely sure it this is nAnt or csc.exe but, nonetheless, they will be included by default.
Excuding is available to the developer, however.
<resources basedir="." dynamicprefix="true" /> <include name="**\*.resx" /> <exclude name="somefile\loginform.resx" /></resources>
This post by punk coder has more detail and things to consider