Question says it all. Is there a way to enforce case sensitivity in VB.Net file-names? If so, how!
The primary issue that I am trying to solve is the difference in how Windows doesn’t care about the case of a file-name, but other tools, like Subversion, do care about the case of a file-name
Yes, by writing your own compiler.
New answer for the new question – you’re probably better off trying to make your other tools operate in a case-insensitive way in regards to filenames. For example, here’s a pre-commit hook for subversion that checks for case-insensitive filename clashes.