Browse Source

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

	* AssemblyInfo.cs: Added missing attributes

svn path=/trunk/mcs/; revision=101526
Andreas N 17 years ago
parent
commit
bb090d64ad

+ 28 - 15
mcs/class/System.Web.Services/Assembly/AssemblyInfo.cs

@@ -32,29 +32,42 @@ using System;
 using System.Reflection;
 using System.Resources;
 using System.Security;
+using System.Diagnostics;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
 // General Information about the System.Web.Services assembly
 
+[assembly: AssemblyTitle ("System.Web.Services.dll")]
+[assembly: AssemblyDescription ("System.Web.Services.dll")]
+[assembly: AssemblyDefaultAlias ("System.Web.Services.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: AssemblyTitle("System.Web.Services.dll")]
-[assembly: AssemblyDescription("System.Web.Services.dll")]
-[assembly: AssemblyConfiguration("Development version")]
-[assembly: AssemblyCompany("MONO development team")]
-[assembly: AssemblyProduct("MONO CLI")]
-[assembly: AssemblyCopyright("(c) 2003 Various Authors")]
-[assembly: AssemblyTrademark("")]
-
-[assembly: CLSCompliant(true)]
-[assembly: AssemblyDefaultAlias("System.Web.Services.dll")]
-[assembly: AssemblyInformationalVersion("0.0.0.1")]
-[assembly: NeutralResourcesLanguage("en-US")]
+[assembly: NeutralResourcesLanguage ("en-US")]
 
-[assembly: ComVisible(false)]
+[assembly: ComVisible (false)]
 [assembly: AllowPartiallyTrustedCallers]
 
-[assembly: AssemblyDelaySign(true)]
-[assembly: AssemblyKeyFile("../msfinal.pub")]
+#if !TARGET_JVM
+	[assembly: CLSCompliant (true)]
+	[assembly: AssemblyDelaySign (true)]
+	[assembly: AssemblyKeyFile("../msfinal.pub")]
+#endif
+
+#if NET_2_0
+	[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
+	[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
+	[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+#elif NET_1_1
+	[assembly: AssemblyTrademark ("")]
+	[assembly: AssemblyConfiguration ("")]
+#elif NET_1_0
+	[assembly: AssemblyTrademark ("")]
+	[assembly: AssemblyConfiguration ("")]
+#endif

+ 4 - 0
mcs/class/System.Web.Services/Assembly/ChangeLog

@@ -1,3 +1,7 @@
+2008-04-23  Andreas Nahr <[email protected]>
+
+	* AssemblyInfo.cs: Added missing attributes
+
 2003-07-21  Andreas Nahr <[email protected]>
 
 	* AssemblyInfo.cs: Added