Type X conflicts with the imported Type X Compile Errror

If you get this error compiling your asp .net website/application that means you have same class defined in two places.

In most common case scenario you probably had defined a class on your own which is same name as of one from an external dll you are using.

If thats the case you can simply rename your own class X to something else and that should take care of it.