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:11:24 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2004-04-07 00:11:24 +0400
commita034e004a85a5bd7a2862cd287aeda82c0244ff0 (patch)
tree27e7846eab70dbe0563d3001a501e8ee470c8be9 /mcs/class/System.Configuration.Install
parent5eb7d8c2d61af96c888132e6b2bddbd79c246a9b (diff)
2004-04-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added * ChangeLog: Added * Locale.cs: Added svn path=/trunk/mcs/; revision=25112
Diffstat (limited to 'mcs/class/System.Configuration.Install')
-rw-r--r--mcs/class/System.Configuration.Install/Assembly/AssemblyInfo.cs46
-rw-r--r--mcs/class/System.Configuration.Install/Assembly/ChangeLog5
-rw-r--r--mcs/class/System.Configuration.Install/Assembly/Locale.cs24
3 files changed, 75 insertions, 0 deletions
diff --git a/mcs/class/System.Configuration.Install/Assembly/AssemblyInfo.cs b/mcs/class/System.Configuration.Install/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..baf0fc42dfc
--- /dev/null
+++ b/mcs/class/System.Configuration.Install/Assembly/AssemblyInfo.cs
@@ -0,0 +1,46 @@
+//
+// 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.Configuration.Install 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.Configuration.Install.dll")]
+[assembly: AssemblyDescription ("System.Configuration.Install.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.Configuration.Install.dll")]
+[assembly: AssemblyInformationalVersion ("0.0.0.1")]
+[assembly: NeutralResourcesLanguage ("en-US")]
+
+[assembly: ComVisible (false)]
+
+//[assembly: AssemblyDelaySign (true)]
+//[assembly: AssemblyKeyFile ("")] \ No newline at end of file
diff --git a/mcs/class/System.Configuration.Install/Assembly/ChangeLog b/mcs/class/System.Configuration.Install/Assembly/ChangeLog
new file mode 100644
index 00000000000..40923a92125
--- /dev/null
+++ b/mcs/class/System.Configuration.Install/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/System.Configuration.Install/Assembly/Locale.cs b/mcs/class/System.Configuration.Install/Assembly/Locale.cs
new file mode 100644
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/System.Configuration.Install/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;
+ }
+}