[utils] Fix force inlining compilation error with gcc on linux
[mono.git] / mcs / class / corlib / System.Configuration.Assemblies / AssemblyVersionCompatibility.cs
index 010896f088a0d367f7d933cab4ace74489cc3ae9..9e00f8904670eb813a84aae06f77d4f379699c8a 100644 (file)
@@ -8,9 +8,7 @@
 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004, 2006 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
 
 namespace System.Configuration.Assemblies {
 
-
-       /// <summary>
-       /// </summary>
+       [Serializable]
+       [ComVisible (true)]
        public enum AssemblyVersionCompatibility {
-
-               /// <summary>
-               /// </summary>
                SameMachine = 1,
-
-               /// <summary>
-               /// </summary>
                SameProcess = 2,
-
-               /// <summary>
-               /// </summary>
-               SameDomain = 3,
-       } // AssemblyVersionCompatibility
-
-} // System.Configuration.Assemblies
+               SameDomain = 3
+       }
+}