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:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 23:14:54 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 23:14:54 +0400
commit4baaf7d13513a0c0597018a910566b8d84cc5510 (patch)
treeee461fd7ccc3f90739676285da314886335b2ce5
parentf94ce193d4370adb3e90110f0166882a5197f081 (diff)
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added * ChangeLog: Added * Locale.cs: Added svn path=/trunk/mcs/; revision=16412
-rw-r--r--mcs/class/System.Data/Assembly/AssemblyInfo.cs48
-rw-r--r--mcs/class/System.Data/Assembly/ChangeLog5
-rw-r--r--mcs/class/System.Data/Assembly/Locale.cs24
3 files changed, 77 insertions, 0 deletions
diff --git a/mcs/class/System.Data/Assembly/AssemblyInfo.cs b/mcs/class/System.Data/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..d7fd5a92386
--- /dev/null
+++ b/mcs/class/System.Data/Assembly/AssemblyInfo.cs
@@ -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 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.Data.dll")]
+[assembly: AssemblyDescription("System.Data.dll")]
+[assembly: AssemblyConfiguration("Development version")]
+[assembly: AssemblyCompany("MONO development team")]
+[assembly: AssemblyProduct("MONO CLI")]
+[assembly: AssemblyCopyright("(c) 2003 Various Authors")]
+[assembly: AssemblyTrademark("")]
+
+// FIXME Add once compliance is reached
+//[assembly: CLSCompliant(true)]
+[assembly: AssemblyDefaultAlias("System.Data.dll")]
+[assembly: AssemblyInformationalVersion("0.0.0.1")]
+[assembly: NeutralResourcesLanguage("en-US")]
+
+[assembly: ComVisible(false)]
+[assembly: AllowPartiallyTrustedCallers]
+
+//[assembly: AssemblyDelaySign(false)]
+//[assembly: AssemblyKeyFile("")] \ No newline at end of file
diff --git a/mcs/class/System.Data/Assembly/ChangeLog b/mcs/class/System.Data/Assembly/ChangeLog
new file mode 100644
index 00000000000..b2dd825a0e3
--- /dev/null
+++ b/mcs/class/System.Data/Assembly/ChangeLog
@@ -0,0 +1,5 @@
+2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * AssemblyInfo.cs: Added
+ * ChangeLog: Added
+ * Locale.cs: Added \ No newline at end of file
diff --git a/mcs/class/System.Data/Assembly/Locale.cs b/mcs/class/System.Data/Assembly/Locale.cs
new file mode 100644
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/System.Data/Assembly/Locale.cs
@@ -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;
+ }
+}