In my project I have a class that is inherited by many other classes. We'll call it ClassBase.
public class ClassInheritFromBase : ClassBase
When ClassBase is being inherited, Resharper throws an "Ambiguous reference" warning on the ClassBase, and anything inside the new class that inherited from ClassBase does not have Intellisense and gets warnings that it cannot find it.
The project compiles and run fine.
If I change the namespace ClassBase is in and then change the inheriting classes, they find it fine and Resharper has no problem, Intellisense works ... until it is compiled. After the compile it goes back to having the ambiguous reference warnings and everything else.
Anybody seen this before and know how to fix? I saw an entry in JetBrains bug tracking for an issue just like this, but they closed it as unable to reproduce.