It'd be nice if there was a way through configuration to exclude an assembly entirely from ReSharper's intellisense.
Recently I had to add the IKVM assembly which provides the entire J2SE class library as a .NET assembly. This results in a lot of duplicate class names. So now when I type code like
public void Whatever() {
List
}
and I get the ReSharper Import Type pop-up it gives me three options, java.awt.List, java.util.List, and System.Collections.Generics.List.
I know that for this solution I will never use any of the java.* classes so if ReSharper could ignore them for the Import Type pop-up it'd be really helpful.