Generic interface with ungeneric version ImportAsIs

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)

In upcoming you’ll find a new attribute VL.Core.Import.NameAttribute you can put on top of one of those interfaces to give them a different name in VL, for example “IMyInterface (NonGeneric)”.