Przeglądaj źródła

2008-04-15 Andreas Nahr <[email protected]>

	* AssemblyInfo.cs: Added missing attributes

svn path=/trunk/mcs/; revision=100730
Andreas N 17 lat temu
rodzic
commit
d214a89a2c

+ 18 - 13
mcs/class/System.Configuration/Assembly/AssemblyInfo.cs

@@ -33,33 +33,38 @@ using System.Diagnostics;
 using System.Reflection;
 using System.Resources;
 using System.Security;
+using System.Security.Permissions;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
-// General Information about the System.Configuration.Install assembly
-
-[assembly: AssemblyVersion (Consts.FxVersion)]
-[assembly: SatelliteContractVersion (Consts.FxVersion)]
+// General Information about the System.Configuration (.Net 2.0 only) assembly
 
 [assembly: AssemblyTitle ("System.Configuration.dll")]
 [assembly: AssemblyDescription ("System.Configuration.dll")]
-[assembly: AssemblyCompany ("MONO development team")]
-[assembly: AssemblyProduct ("MONO CLI")]
-[assembly: AssemblyCopyright ("(c) 2005 Various Authors")]
+[assembly: AssemblyDefaultAlias ("System.Configuration.dll")]
+
+[assembly: AssemblyCompany (Consts.MonoCompany)]
+[assembly: AssemblyProduct (Consts.MonoProduct)]
+[assembly: AssemblyCopyright (Consts.MonoCopyright)]
+[assembly: AssemblyVersion (Consts.FxVersion)]
+[assembly: SatelliteContractVersion (Consts.FxVersion)]
+[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
 
 [assembly: CLSCompliant (true)]
-[assembly: AssemblyDefaultAlias ("System.Configuration.dll")]
-[assembly: AssemblyInformationalVersion ("0.0.0.1")]
 [assembly: NeutralResourcesLanguage ("en-US")]
 
 [assembly: ComVisible (false)]
+[assembly: AllowPartiallyTrustedCallers]
 
 #if !TARGET_JVM //TARGET_JVM does not support signing
-[assembly: AssemblyDelaySign (true)]
-[assembly: AssemblyKeyFile("../msfinal.pub")]
+	[assembly: AssemblyDelaySign (true)]
+	[assembly: AssemblyKeyFile ("../msfinal.pub")]
 #endif
 
 #if NET_2_0
-[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+	[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+	[assembly: SecurityPermission (SecurityAction.RequestMinimum, SkipVerification = true)]
+	[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+	[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
+	[assembly: ComCompatibleVersion (1, 0, 3300, 0)]
 #endif
-[assembly: AllowPartiallyTrustedCallers]

+ 4 - 0
mcs/class/System.Configuration/Assembly/ChangeLog

@@ -1,3 +1,7 @@
+2008-04-15  Andreas Nahr <[email protected]>
+
+	* AssemblyInfo.cs: Added missing attributes
+
 2005-06-17  Lluis Sanchez Gual  <[email protected]>
 
 	* AssemblyInfo.cs: Removed some unneeded attributes.