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:
authorAlex Rønne Petersen <alexrp@xamarin.com>2015-01-30 17:52:01 +0300
committerAlex Rønne Petersen <alexrp@xamarin.com>2015-02-03 05:41:14 +0300
commit351e94964c0c118616165089d5d831dfdccaebec (patch)
tree68db9be1df7034c1ba4a818a0da08edffb83b1b3 /mcs/class/System.ComponentModel.DataAnnotations
parent43a0088f3fb980b00506f9cd9cac65db69a929ca (diff)
Remove obsolete profiles and profile checks from the build system.
* Removed all old profiles from VALID_PROFILE checks. * Removed most logic under checks like ifeq (net_2_0), $(PROFILE)) as it is dead code now that those old profiles are gone. * Simplified the list of assemblies in mcs/class/Makefile now that we only have one profile. * LIBRARY_NEEDS_POSTPROCESSING has been removed as it was only used by old 1.x assemblies that no longer exist. * Build logic that sets MONO_PATH now points to mcs/class/lib/net_4_5 instead of mcs/class/lib/net_2_0.
Diffstat (limited to 'mcs/class/System.ComponentModel.DataAnnotations')
-rw-r--r--mcs/class/System.ComponentModel.DataAnnotations/Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/mcs/class/System.ComponentModel.DataAnnotations/Makefile b/mcs/class/System.ComponentModel.DataAnnotations/Makefile
index 3d9ff9e2586..2f99958413b 100644
--- a/mcs/class/System.ComponentModel.DataAnnotations/Makefile
+++ b/mcs/class/System.ComponentModel.DataAnnotations/Makefile
@@ -9,16 +9,10 @@ LIB_MCS_FLAGS = \
/r:System.Data.dll \
/r:System.Xml.dll \
-
-ifeq (2.0, $(FRAMEWORK_VERSION))
-# This is a .NET 3.5 only assembly, but built during the 2.0 build
-LIB_MCS_FLAGS += -d:NET_3_5
-endif
-
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
# This is a .NET 3.5+ assembly
-VALID_PROFILE := $(filter net_2_0 net_4_0 net_4_5 monotouch monodroid xammac mobile mobile_static, $(PROFILE))
+VALID_PROFILE := $(filter net_4_5 monotouch monodroid xammac mobile mobile_static, $(PROFILE))
ifndef VALID_PROFILE
LIBRARY_NAME = dummy-System.ComponentModel.DataAnnotations.dll
NO_INSTALL = yes