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=4ad7939369cd1d69ad3f0911d11b45bc55a3232e;hpb=5bbfa8860b090e465a3aa45edeb9c94481ef1a22;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs b/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs index 4ad7939369c..1e335ba7c1c 100644 --- a/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs +++ b/mcs/class/corlib/System.Runtime.InteropServices/ITypeLibConverter.cs @@ -30,14 +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 { -#if NET_2_0 [ComVisible (true)] -#endif [Guid("F1C3BF78-C3E4-11D3-88E7-00902754C43A")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface ITypeLibConverter { @@ -48,3 +47,4 @@ namespace System.Runtime.InteropServices { bool GetPrimaryInteropAssembly (Guid g, int major, int minor, int lcid, out string asmName, out string asmCodeBase); } } +#endif