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>2008-04-25 16:46:38 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2008-04-25 16:46:38 +0400
commit8b7d7a847b9a56df31196fff9458f359e998a977 (patch)
tree3d260b57c30f003134a38f3b56bc9b6eb87e9939 /mcs/class/Cscompmgd
parent74b78edf2c34cf8b7e7f9696b96076f097cb1a91 (diff)
2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Change to use more constants svn path=/trunk/mcs/; revision=101801
Diffstat (limited to 'mcs/class/Cscompmgd')
-rw-r--r--mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs47
-rw-r--r--mcs/class/Cscompmgd/Assembly/ChangeLog4
2 files changed, 24 insertions, 27 deletions
diff --git a/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
index 73880f34e99..65bb82d8b51 100644
--- a/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
+++ b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
@@ -29,47 +29,40 @@
//
using System;
-#if NET_2_0
-using System.Diagnostics;
-#endif
using System.Reflection;
-#if NET_2_0
using System.Resources;
+using System.Diagnostics;
using System.Runtime.CompilerServices;
-using System.Runtime.ConstrainedExecution;
+#if NET_2_0
+ using System.Runtime.ConstrainedExecution;
#endif
using System.Runtime.InteropServices;
+// General Information about the cscompmgd assembly
+
[assembly: AssemblyVersion (Consts.VsVersion)]
-#if (NET_2_0)
-[assembly: SatelliteContractVersion (Consts.VsVersion)]
-#endif
[assembly: AssemblyFileVersion (Consts.VsFileVersion)]
-#if (NET_1_0)
- [assembly: AssemblyDescription ("Managed interface for C# compiler")]
- [assembly: AssemblyTitle ("Managed C# Compiler")]
-#elif (NET_2_0)
+[assembly: CLSCompliant (true)]
+[assembly: ComVisible (false)]
+
+[assembly: AssemblyDelaySign (true)]
+[assembly: AssemblyKeyFile ("../msfinal.pub")]
+
+#if NET_2_0
+ [assembly: AssemblyTitle ("cscompmgd.dll")]
[assembly: AssemblyDefaultAlias ("cscompmgd.dll")]
[assembly: AssemblyDescription ("cscompmgd.dll")]
+ [assembly: AssemblyCompany (Consts.MonoCompany)]
+ [assembly: AssemblyProduct (Consts.MonoProduct)]
+ [assembly: AssemblyCopyright (Consts.MonoCopyright)]
+ [assembly: SatelliteContractVersion (Consts.VsVersion)]
[assembly: AssemblyInformationalVersion (Consts.VsFileVersion)]
- [assembly: AssemblyTitle ("cscompmgd.dll")]
[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
- [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
+ [assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: NeutralResourcesLanguage ("en-US")]
- [assembly: ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
- [assembly: AssemblyCompany ("Mono development team")]
- [assembly: AssemblyCopyright ("Mono development team")]
- [assembly: AssemblyProduct ("Microsoft (R) Visual Studio (R) 2005")]
-#elif (NET_1_1)
+ [assembly: ReliabilityContract (Consistency.MayCorruptProcess, Cer.None)]
+#elif (NET_1_1 || NET_1_0)
[assembly: AssemblyDescription ("Managed interface for C# compiler")]
[assembly: AssemblyTitle ("Managed C# Compiler")]
#endif
-
-[assembly: CLSCompliant (true)]
-
-[assembly: ComVisible (false)]
-
-[assembly: AssemblyDelaySign (true)]
-[assembly: AssemblyKeyFile("../msfinal.pub")]
-
diff --git a/mcs/class/Cscompmgd/Assembly/ChangeLog b/mcs/class/Cscompmgd/Assembly/ChangeLog
index cd722517949..e48ab297f3d 100644
--- a/mcs/class/Cscompmgd/Assembly/ChangeLog
+++ b/mcs/class/Cscompmgd/Assembly/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-25 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * AssemblyInfo.cs: Change to use more constants
+
2008-04-09 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AssemblyInfo.cs: Add missing attributes