Seems ImportAsIs can’t resolve when generic interface has ungeneric version:
public interface IMyInterface
{
object GetValue();
}
public interface IMyInterface<T> : IMyInterface
{
T GetValue();
}
GenericInterfaceImport.zip (2.8 KB)
