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:
authorJb Evain <jbevain@gmail.com>2009-11-12 15:33:00 +0300
committerJb Evain <jbevain@gmail.com>2009-11-12 15:33:00 +0300
commit1261df67dead112ffd4d2e40dbce6d17328ecbc7 (patch)
treeda30a1ccd9f5708bb638042db8c70a33f89662bb /mcs/build
parentd5fc6487e82cf3a5b7724ca232f5a13d27c39f59 (diff)
2009-11-12 Jb Evain <jbevain@novell.com>
* Consts.cs.in: add a AssemblySystem_Core constant. svn path=/branches/mono-2-6/mcs/; revision=146032
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/common/ChangeLog4
-rw-r--r--mcs/build/common/Consts.cs.in7
2 files changed, 10 insertions, 1 deletions
diff --git a/mcs/build/common/ChangeLog b/mcs/build/common/ChangeLog
index 992ce6b10f0..e21fef69372 100644
--- a/mcs/build/common/ChangeLog
+++ b/mcs/build/common/ChangeLog
@@ -1,3 +1,7 @@
+2009-11-12 Jb Evain <jbevain@novell.com>
+
+ * Consts.cs.in: add a AssemblySystem_Core constant.
+
2009-10-26 Sebastien Pouliot <sebastien@ximian.com>
* Consts.cs.in: Update SL2 FX version to the second (and last)
diff --git a/mcs/build/common/Consts.cs.in b/mcs/build/common/Consts.cs.in
index 5f4caee2ebc..340684d0cb7 100644
--- a/mcs/build/common/Consts.cs.in
+++ b/mcs/build/common/Consts.cs.in
@@ -124,5 +124,10 @@ internal
public const string AssemblySystem_Windows_Forms = "System.Windows.Forms, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089";
#if NET_4_0 || BOOTSTRAP_NET_4_0
public const string AssemblySystemCore_3_5 = "System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
-#endif
+ public const string AssemblySystem_Core = "System.Core, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089";
+#elif NET_2_1
+ public const string AssemblySystem_Core = "System.Core, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089";
+#elif NET_2_0
+ public const string AssemblySystem_Core = "System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
+#endif
}