2004-03-15 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Mon, 15 Mar 2004 18:09:40 +0000 (18:09 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Mon, 15 Mar 2004 18:09:40 +0000 (18:09 -0000)
* AssemblyInfo.cs: Added
* Locale.cs: Added
* ChangeLog: Added

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

mcs/class/System.Windows.Forms/Assembly/AssemblyInfo.cs [new file with mode: 0644]
mcs/class/System.Windows.Forms/Assembly/ChangeLog [new file with mode: 0644]
mcs/class/System.Windows.Forms/Assembly/Locale.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Windows.Forms/Assembly/AssemblyInfo.cs b/mcs/class/System.Windows.Forms/Assembly/AssemblyInfo.cs
new file mode 100644 (file)
index 0000000..ad1362b
--- /dev/null
@@ -0,0 +1,48 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2003 Ximian, Inc.  http://www.ximian.com
+//
+
+using System;
+using System.Reflection;
+using System.Resources;
+using System.Security;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about the System.Windows.Forms assembly
+
+#if (NET_1_0)
+       [assembly: AssemblyVersion("1.0.3300.0")]
+       [assembly: SatelliteContractVersion("1.0.3300.0")]
+#endif
+#if (NET_1_1)
+       [assembly: AssemblyVersion("1.0.5000.0")]
+       [assembly: SatelliteContractVersion("1.0.5000.0")]
+       [assembly: ComCompatibleVersion(1, 0, 3300, 0)]
+       [assembly: TypeLibVersion(1, 10)]
+#endif
+
+[assembly: AssemblyTitle("System.Windows.Forms.dll")]
+[assembly: AssemblyDescription("System.Windows.Forms.dll")]
+[assembly: AssemblyConfiguration("Development version")]
+[assembly: AssemblyCompany("MONO development team")]
+[assembly: AssemblyProduct("MONO CLI")]
+[assembly: AssemblyCopyright("(c) 2003 Various Authors")]
+[assembly: AssemblyTrademark("")]
+
+//TODO add once compliance is reached!
+//[assembly: CLSCompliant(true)]
+[assembly: ComVisible(false)]
+[assembly: AssemblyDefaultAlias("System.Windows.Forms.dll")]
+[assembly: AssemblyInformationalVersion("0.0.0.1")]
+[assembly: NeutralResourcesLanguage("en-US")]
+
+[assembly: AllowPartiallyTrustedCallers()]
+
+//[assembly: AssemblyDelaySign(true)]
+//[assembly: AssemblyKeyFile("")]
\ No newline at end of file
diff --git a/mcs/class/System.Windows.Forms/Assembly/ChangeLog b/mcs/class/System.Windows.Forms/Assembly/ChangeLog
new file mode 100644 (file)
index 0000000..c7b6c9e
--- /dev/null
@@ -0,0 +1,5 @@
+2004-03-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * AssemblyInfo.cs: Added
+       * Locale.cs: Added
+       * ChangeLog: Added
diff --git a/mcs/class/System.Windows.Forms/Assembly/Locale.cs b/mcs/class/System.Windows.Forms/Assembly/Locale.cs
new file mode 100644 (file)
index 0000000..a456449
--- /dev/null
@@ -0,0 +1,24 @@
+//
+// Locale.cs
+//
+// Author:
+//   Miguel de Icaza (miguel@ximian.com)
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2001 - 2003 Ximian, Inc (http://www.ximian.com)
+//
+
+internal sealed class Locale {
+
+       private Locale ()
+       {
+       }
+
+       /// <summary>
+       ///   Returns the translated message for the current locale
+       /// </summary>
+       public static string GetText (string msg)
+       {
+               return msg;
+       }
+}