2008-04-23 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Wed, 23 Apr 2008 09:22:24 +0000 (09:22 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Wed, 23 Apr 2008 09:22:24 +0000 (09:22 -0000)
* AssemblyInfo.cs: Added missing attributes

svn path=/trunk/mcs/; revision=101511

mcs/class/System.DirectoryServices/Assembly/AssemblyInfo.cs
mcs/class/System.DirectoryServices/Assembly/ChangeLog

index 746957f8aac323a6ab2fddaa48f8e072e8f7f7c3..583334480c86a7fd3eda901f9e2f21fb376135f5 100644 (file)
@@ -16,27 +16,47 @@ using System.Runtime.InteropServices;
 
 // General Information about the System.DirectoryServices assembly
 
+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 assembly
+
+[assembly: AssemblyTitle ("System.DirectoryServices.dll")]
+[assembly: AssemblyDescription ("System.DirectoryServices.dll")]
+[assembly: AssemblyDefaultAlias ("System.DirectoryServices.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.DirectoryServices.dll")]
-[assembly: AssemblyDescription("System.DirectoryServices.dll")]
-[assembly: AssemblyConfiguration("Development version")]
-[assembly: AssemblyCompany("MONO development team")]
-[assembly: AssemblyProduct("MONO CLI")]
-[assembly: AssemblyCopyright("(c) 2003 Various Authors")]
-[assembly: AssemblyTrademark("")]
-#if (!TARGET_JVM)
-[assembly: CLSCompliant(true)]
-#endif
-[assembly: AssemblyDefaultAlias("System.DirectoryServices.dll")]
-[assembly: AssemblyInformationalVersion("0.0.0.1")]
-[assembly: NeutralResourcesLanguage("en-US")]
+[assembly: NeutralResourcesLanguage ("en-US")]
 
-[assembly: ComVisible(false)]
+[assembly: ComVisible (false)]
 
-#if (!TARGET_JVM)
-[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: AllowPartiallyTrustedCallers]
+       [assembly: RuntimeCompatibility (WrapNonExceptionThrows = true)]
+       [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
index f31aa4ea5af37af249f7a58d1ababeeab7765b13..e93ec7247afad5a516c6385b2fc2e98cd7621bc2 100644 (file)
@@ -1,3 +1,7 @@
+2008-04-23  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * AssemblyInfo.cs: Added missing attributes
+
 2005-11-15 Vlad Spivak <spivak@mainsoft.coim>
        * AssemblyInfo.cs: Added #if ! on attributes not used in TARGET_JVM.