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:
authorMarek Safar <marek.safar@gmail.com>2011-09-23 22:37:04 +0400
committerMarek Safar <marek.safar@gmail.com>2011-09-23 22:37:04 +0400
commit3ecb5142f69c0484dc382f08eb6f5613f7395123 (patch)
tree3e98f9aa38d250af6b80ceb28872b7a9aaa360c0 /mcs/class/System.Dynamic
parente348cb5e2d493ac50800fb433d20ff5eee5b0b44 (diff)
Introduce separate .net 4.5 profile
Diffstat (limited to 'mcs/class/System.Dynamic')
-rw-r--r--mcs/class/System.Dynamic/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/mcs/class/System.Dynamic/Makefile b/mcs/class/System.Dynamic/Makefile
index 7327e2adccf..5e48b790702 100644
--- a/mcs/class/System.Dynamic/Makefile
+++ b/mcs/class/System.Dynamic/Makefile
@@ -6,5 +6,14 @@ LIBRARY = System.Dynamic.dll
LIB_MCS_FLAGS = -unsafe -d:CODEPLEX_40 -r:System.Core.dll -r:System.dll
-include ../../build/library.make
+# This is a .NET 4.0+ only assembly
+VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
+ifndef VALID_PROFILE
+LIBRARY_NAME = dummy-System.Dynamic.dll
+NO_INSTALL = yes
+NO_SIGN_ASSEMBLY = yes
+NO_TEST = yes
+NO_BUILD = yes
+endif
+include ../../build/library.make