Reputation: 1236
Has anyone ever seen this error in Visual Basic 2010, if so... any idea on how I can resolve it?
The error is
module 'Resources' and module 'Resources', declared in 'Resources.Designer.vb', conflict in namespace 'Resources'
Upvotes: 2
Views: 4984
Reputation: 1220
I had the same - deleting duplicate file: Resources.Designer.vb in MyProject folder (which appeared to be here for unknown reason - probably some auto process within VS2010.
In my case I had two files (identically the same):
Deleting one of them should do.
Upvotes: 3