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>2004-04-07 00:20:39 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2004-04-07 00:20:39 +0400
commit6e2cdc3d95fd806840f0406669a10c67b828afed (patch)
treec3b2d6a28502ccf9af4bd3c82bbcc9a5b281f7f6 /mcs/class/Cscompmgd
parent8c5f516cfe60d4c711ae405f9bf036c0dc5abe79 (diff)
2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added * ChangeLog: Added * Locale.cs: Added svn path=/trunk/mcs/; revision=25115
Diffstat (limited to 'mcs/class/Cscompmgd')
-rw-r--r--mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs32
-rw-r--r--mcs/class/Cscompmgd/Assembly/ChangeLog5
-rw-r--r--mcs/class/Cscompmgd/Assembly/Locale.cs24
3 files changed, 61 insertions, 0 deletions
diff --git a/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..20de39d8059
--- /dev/null
+++ b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
@@ -0,0 +1,32 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2003 Ximian, Inc. http://www.ximian.com
+//
+
+using System;
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+// General Information about the System.Web.Mobile assembly
+
+#if (NET_1_0)
+ [assembly: AssemblyVersion ("7.0.3300.0")]
+#endif
+#if (NET_1_1)
+ [assembly: AssemblyVersion ("7.0.5000.0")]
+#endif
+
+[assembly: AssemblyTitle ("Managed C# Compiler")]
+[assembly: AssemblyDescription ("Interface for the managed C# compiler")]
+
+[assembly: CLSCompliant (true)]
+[assembly: AssemblyFileVersion ("0.0.0.1")]
+
+[assembly: ComVisible (false)]
+
+//[assembly: AssemblyDelaySign (true)]
+//[assembly: AssemblyKeyFile ("")] \ No newline at end of file
diff --git a/mcs/class/Cscompmgd/Assembly/ChangeLog b/mcs/class/Cscompmgd/Assembly/ChangeLog
new file mode 100644
index 00000000000..40923a92125
--- /dev/null
+++ b/mcs/class/Cscompmgd/Assembly/ChangeLog
@@ -0,0 +1,5 @@
+2004-04-06 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/Cscompmgd/Assembly/Locale.cs b/mcs/class/Cscompmgd/Assembly/Locale.cs
new file mode 100644
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/Cscompmgd/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;
+ }
+}