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:
authorKornél Pál <kornelpal@gmail.com>2005-11-05 13:50:01 +0300
committerKornél Pál <kornelpal@gmail.com>2005-11-05 13:50:01 +0300
commite36848f82de06a16dc84dd9fad9effbfece2abd5 (patch)
treee878a1ff9040fca76ab6a2b6ad603fa7a63a3d81 /mcs/class/Cscompmgd
parenta0586af57c1da609946ee52e0762ba5c8df546f0 (diff)
Updated runtime version to v2.0.50727 (2.0 RTM). Use Consts.MonoVersion, Consts.FxFileVersion and Consts.VsFileVersion in assembly attributes. Use Consts.RuntimeVersion as Environment.Version that makes maintenance easier.
svn path=/trunk/mcs/; revision=52607
Diffstat (limited to 'mcs/class/Cscompmgd')
-rw-r--r--mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs6
-rw-r--r--mcs/class/Cscompmgd/Assembly/ChangeLog5
2 files changed, 7 insertions, 4 deletions
diff --git a/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
index 2ae14eeb3b4..7553c1dd038 100644
--- a/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
+++ b/mcs/class/Cscompmgd/Assembly/AssemblyInfo.cs
@@ -44,16 +44,15 @@ using System.Runtime.InteropServices;
#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: AssemblyFileVersion ("7.0.9466.0")]
[assembly: AssemblyTitle ("Managed C# Compiler")]
#elif (NET_2_0)
[assembly: AssemblyDefaultAlias ("cscompmgd.dll")]
[assembly: AssemblyDescription ("cscompmgd.dll")]
- [assembly: AssemblyFileVersion ("8.0.50215.44")]
- [assembly: AssemblyInformationalVersion ("8.0.50215.44")]
+ [assembly: AssemblyInformationalVersion (Consts.VsFileVersion)]
[assembly: AssemblyTitle ("cscompmgd.dll")]
[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
@@ -61,7 +60,6 @@ using System.Runtime.InteropServices;
[assembly: ReliabilityContract(Consistency.MayCorruptProcess, Cer.None)]
#elif (NET_1_1)
[assembly: AssemblyDescription ("Managed interface for C# compiler")]
- [assembly: AssemblyFileVersion ("7.10.3052.4")]
[assembly: AssemblyTitle ("Managed C# Compiler")]
#endif
diff --git a/mcs/class/Cscompmgd/Assembly/ChangeLog b/mcs/class/Cscompmgd/Assembly/ChangeLog
index b2a30955a59..7d411305c89 100644
--- a/mcs/class/Cscompmgd/Assembly/ChangeLog
+++ b/mcs/class/Cscompmgd/Assembly/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-05 Kornél Pál <kornelpal@hotmail.com>
+
+ * AssemblyInfo.cs: Use Consts.VsFileVersion as AssemblyFileVersion and
+ AssemblyInformationalVersion.
+
2005-08-07 Gert Driesen <drieseng@users.sourceforge.net>
* AssemblyInfo.cs: Fixed attributes to match MS.NET.