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:
authorSebastien Pouliot <sebastien@ximian.com>2004-01-12 04:28:16 +0300
committerSebastien Pouliot <sebastien@ximian.com>2004-01-12 04:28:16 +0300
commit49442da6c80605caf72343eaeee22e67a6d7e538 (patch)
tree38c2678ea426b306744b10ba883132b8cf842e5f /mcs/class/System.Security/Assembly
parent9ff63f2031efb1e6314f3b35edd53b1c0c987fef (diff)
2004-01-11 Sebastien Pouliot <spouliot@videotron.ca>
* AssemblyInfo.cs: New. Copied and ajusted from corlib. * Locale.cs: New. Copied (verbatim) from corlib. * ChangeLog: New. svn path=/trunk/mcs/; revision=21963
Diffstat (limited to 'mcs/class/System.Security/Assembly')
-rwxr-xr-xmcs/class/System.Security/Assembly/AssemblyInfo.cs38
-rwxr-xr-xmcs/class/System.Security/Assembly/ChangeLog5
-rwxr-xr-xmcs/class/System.Security/Assembly/Locale.cs24
3 files changed, 67 insertions, 0 deletions
diff --git a/mcs/class/System.Security/Assembly/AssemblyInfo.cs b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
new file mode 100755
index 00000000000..0d9ea7bc2a0
--- /dev/null
+++ b/mcs/class/System.Security/Assembly/AssemblyInfo.cs
@@ -0,0 +1,38 @@
+//
+// 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")]
+#endif
+
+[assembly: AssemblyTitle ("System.Security.dll")]
+[assembly: AssemblyDescription ("System.Security.dll")]
+[assembly: AssemblyCompany ("MONO development team")]
+[assembly: AssemblyProduct ("MONO CLI")]
+[assembly: AssemblyCopyright ("(c) 2003-2004 Various Authors")]
+
+[assembly: CLSCompliant (true)]
+[assembly: NeutralResourcesLanguage ("en-US")]
+
+//[assembly: AssemblyDelaySign (false)]
+//[assembly: AssemblyKeyFile ("")]
diff --git a/mcs/class/System.Security/Assembly/ChangeLog b/mcs/class/System.Security/Assembly/ChangeLog
new file mode 100755
index 00000000000..953468750e8
--- /dev/null
+++ b/mcs/class/System.Security/Assembly/ChangeLog
@@ -0,0 +1,5 @@
+2004-01-11 Sebastien Pouliot <spouliot@videotron.ca>
+
+ * AssemblyInfo.cs: New. Copied and ajusted from corlib.
+ * Locale.cs: New. Copied (verbatim) from corlib.
+ * ChangeLog: New. \ No newline at end of file
diff --git a/mcs/class/System.Security/Assembly/Locale.cs b/mcs/class/System.Security/Assembly/Locale.cs
new file mode 100755
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/System.Security/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;
+ }
+}