Merge pull request #5021 from BrzVlad/fix-parallel-fixes
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / ITypeLibConverter.cs
index 4ad7939369cd1d69ad3f0911d11b45bc55a3232e..1e335ba7c1c5ea8d18e2ebc709d364328e5bf811 100644 (file)
 // 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