Adjust sleeping values
[mono.git] / mcs / class / corlib / System.Reflection / ObfuscateAssemblyAttribute.cs
index 3644d52b7cb6ad0a94a6552cbf0728ddb31e4ed2..debfdbcbf1565ed42435cc22321c1eec0217cee3 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0 || BOOTSTRAP_NET_2_0
-
 using System;
+using System.Runtime.InteropServices;
 
 namespace System.Reflection
 {
-       [AttributeUsage (AttributeTargets.Assembly)]
+       [ComVisible (true)]
+       [AttributeUsage (AttributeTargets.Assembly, Inherited=false)]
        public sealed class ObfuscateAssemblyAttribute : Attribute {
 
                private bool is_private;
@@ -52,7 +52,7 @@ namespace System.Reflection
                        }
                }
 
-               public bool Strip {
+               public bool StripAfterObfuscation {
                        get {
                                return strip;
                        }
@@ -63,5 +63,4 @@ namespace System.Reflection
        }
 }
 
-#endif