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
path: root/mcs/build
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2009-06-04 15:33:57 +0400
committerMarek Safar <marek.safar@gmail.com>2009-06-04 15:33:57 +0400
commit472d1c472212d76d0a9c275f04b4045173435519 (patch)
tree452b7ae545fec05ad3973acf48e934c9c4d91167 /mcs/build
parent6cda12925b7752f41ee99928aafd547d3fe40648 (diff)
2009-06-04 Marek Safar <marek.safar@gmail.com>
* Consts.cs.in: Add NET_4_0 constants. svn path=/trunk/mcs/; revision=135408
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/common/ChangeLog4
-rw-r--r--mcs/build/common/Consts.cs.in8
2 files changed, 11 insertions, 1 deletions
diff --git a/mcs/build/common/ChangeLog b/mcs/build/common/ChangeLog
index 73cb661a6cb..76921dc9e95 100644
--- a/mcs/build/common/ChangeLog
+++ b/mcs/build/common/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-04 Marek Safar <marek.safar@gmail.com>
+
+ * Consts.cs.in: Add NET_4_0 constants.
+
2008-11-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
* Consts.cs.in: Update Silverlight's FxFileVersion to final
diff --git a/mcs/build/common/Consts.cs.in b/mcs/build/common/Consts.cs.in
index 0978cb30f51..d10dc9bd3a7 100644
--- a/mcs/build/common/Consts.cs.in
+++ b/mcs/build/common/Consts.cs.in
@@ -51,7 +51,13 @@ internal
public const string MonoProduct = "MONO Common language infrastructure";
public const string MonoCopyright = "(c) various MONO Authors";
-#if NET_3_5
+#if NET_4_0
+ public const string FxVersion = "4.0.0.0";
+ public const string FxFileVersion = "4.0.20506.1";
+
+ public const string VsVersion = "0.0.0.0"; // Useless ?
+ public const string VsFileVersion = "10.0.0.0"; // TODO:
+#elif NET_3_5
// Versions of .NET Framework 3.5 RTM
public const string FxVersion = "3.5.0.0";
public const string FxFileVersion = "3.5.21022.8";