X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.InteropServices%2FITypeLibConverter.cs;h=1e335ba7c1c5ea8d18e2ebc709d364328e5bf811;hb=2eb33cebf5d9669671d3023535456e9c9cf084f7;hp=4dba3a3f20338149d785c459292ccf59047e0c7d;hpb=e771bafbe04a3fcc343e082e1ffce38f1dbee3c1;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs b/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs index 4dba3a3f203..1e335ba7c1c 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs @@ -30,11 +30,13 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // +#if !FULL_AOT_RUNTIME using System.Reflection; using System.Reflection.Emit; namespace System.Runtime.InteropServices { + [ComVisible (true)] [Guid("F1C3BF78-C3E4-11D3-88E7-00902754C43A")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface ITypeLibConverter { @@ -45,3 +47,4 @@ namespace System.Runtime.InteropServices { bool GetPrimaryInteropAssembly (Guid g, int major, int minor, int lcid, out string asmName, out string asmCodeBase); } } +#endif