Merge pull request #920
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / TypeLibExporterFlags.cs
index ce52427e66e415806350eee8e9af793fedb2b74c..957e6892f2d98f18c6cb6ee64af48931e0b78243 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if !FULL_AOT_RUNTIME
 namespace System.Runtime.InteropServices
 {
-#if NET_2_0
        [ComVisible(true)]
-#endif
        [Flags] [Serializable]
        public enum TypeLibExporterFlags {
                OnlyReferenceRegistered = 1,
-#if NET_2_0
                None = 0,
                CallerResolvedReferences = 2,
                OldNames = 4,
                ExportAs32Bit = 16,
                ExportAs64Bit = 32
-#endif
        }
 }
+#endif