Merge pull request #463 from strawd/concurrent-requests
[mono.git] / mcs / class / corlib / System.Security.Policy / ApplicationVersionMatch.cs
index 5a63b328deafe154ea328ac4f53127300e565f3b..08281026c1ca005e48cec8d2c5170fba5ce52948 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 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.
 //
 
-#if NET_2_0
 
-using System;
+using System.Runtime.InteropServices;
 
 namespace System.Security.Policy {
 
-       [Serializable]
+       [ComVisible (true)]
        public enum ApplicationVersionMatch {
                MatchExactVersion,
                MatchAllVersions
        }
 }
 
-#endif