Dean
Dean

Reputation: 1236

module 'Resources' and module 'Resources', declared in 'Resources.Designer.vb', conflict in namespace 'Resources'

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

Answers (1)

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):

  1. Resources.Designer.vb
  2. Resources1.Designer.vb

Deleting one of them should do.

Upvotes: 3

Related Questions