Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs')
-rw-r--r--mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs b/mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs
index f803e4a9d17..d222ee51a8f 100644
--- a/mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs
+++ b/mcs/class/referencesource/mscorlib/system/reflection/assemblyattributes.cs
@@ -7,7 +7,7 @@
**
** File: AssemblyAttributes
**
-** <OWNER>[....]</OWNER>
+** <OWNER>Microsoft</OWNER>
**
**
** Purpose: For Assembly-related custom attributes.
@@ -362,8 +362,7 @@ namespace System.Reflection {
}
}
- // We don't support key migration on Silverlight, as libraries should all be distributed with the application.
-#if FEATURE_STRONGNAME_MIGRATION || FEATURE_NETCORE
+#if FEATURE_STRONGNAME_MIGRATION
[AttributeUsage(AttributeTargets.Assembly, Inherited = false, AllowMultiple=false)]
public sealed class AssemblySignatureKeyAttribute : Attribute
{
@@ -388,7 +387,6 @@ namespace System.Reflection {
}
#endif
-#if FEATURE_CORECLR || !FEATURE_PAL || MONO
[AttributeUsage (AttributeTargets.Assembly, Inherited=false)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class AssemblyKeyNameAttribute : Attribute
@@ -405,7 +403,6 @@ namespace System.Reflection {
get { return m_keyName; }
}
}
-#endif // FEATURE_CORECLR || !FEATURE_PAL
}