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-10 18:17:36 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-10 18:17:36 +0400
commit314fb3819149c0ea37694d6d1cb4cd7e2eef313e (patch)
treedd837932e793bf0bbd10630fa880a61bf5136a0b /mcs/class/System/Assembly
parent9f4c4a035f29bc1a8324978a84ae081f71ab3ceb (diff)
2003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Added file svn path=/trunk/mcs/; revision=16093
Diffstat (limited to 'mcs/class/System/Assembly')
-rw-r--r--mcs/class/System/Assembly/AssemblyInfo.cs36
-rw-r--r--mcs/class/System/Assembly/ChangeLog.txt3
2 files changed, 39 insertions, 0 deletions
diff --git a/mcs/class/System/Assembly/AssemblyInfo.cs b/mcs/class/System/Assembly/AssemblyInfo.cs
new file mode 100644
index 00000000000..67633abd5a9
--- /dev/null
+++ b/mcs/class/System/Assembly/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+//
+// AssemblyInfo.cs
+//
+// Author:
+// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (C) 2002 Ximian, Inc. http://www.ximian.com
+//
+
+using System;
+using System.Reflection;
+using System.Resources;
+using System.Security;
+using System.Runtime.CompilerServices;
+
+// General Information about the system assembly
+
+[assembly: AssemblyVersion("1.0.5000.0")]
+
+[assembly: AssemblyTitle("System.dll")]
+[assembly: AssemblyDescription("System.dll")]
+[assembly: AssemblyConfiguration("Development version")]
+[assembly: AssemblyCompany("MONO dev team")]
+[assembly: AssemblyProduct("MONO CLI")]
+[assembly: AssemblyCopyright("Various Authors")]
+[assembly: AssemblyTrademark("")]
+
+[assembly: CLSCompliant(true)]
+[assembly: AssemblyDefaultAlias("System.dll")]
+[assembly: AssemblyInformationalVersion("0.0.0.1")]
+[assembly: NeutralResourcesLanguage("en-US")]
+[assembly: SatelliteContractVersion("1.0.5000.0")]
+[assembly: AllowPartiallyTrustedCallers]
+
+//[assembly: AssemblyDelaySign(false)]
+//[assembly: AssemblyKeyFile("")] \ No newline at end of file
diff --git a/mcs/class/System/Assembly/ChangeLog.txt b/mcs/class/System/Assembly/ChangeLog.txt
new file mode 100644
index 00000000000..c189dafd2f2
--- /dev/null
+++ b/mcs/class/System/Assembly/ChangeLog.txt
@@ -0,0 +1,3 @@
+2003-07-10 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * AssemblyInfo.cs: Added file \ No newline at end of file