Bug 15574. XML deserialization recursion: add array type to known_types?
[mono.git] / mcs / class / System.ComponentModel.DataAnnotations / Makefile
1 thisdir = class/System.ComponentModel.DataAnnotations
2 SUBDIRS =
3 include ../../build/rules.make
4
5 LIBRARY = System.ComponentModel.DataAnnotations.dll
6 LIB_MCS_FLAGS = \
7                 /r:System.dll \
8                 /r:System.Core.dll \
9                 /r:System.Data.dll \
10                 /r:System.Xml.dll \
11
12
13 ifeq (2.0, $(FRAMEWORK_VERSION))
14 # This is a .NET 3.5 only assembly, but built during the 2.0 build
15 LIB_MCS_FLAGS += -d:NET_3_5
16 endif
17
18 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
19
20 # This is a .NET 3.5+ assembly
21 VALID_PROFILE := $(filter net_2_0 net_4_0 net_4_5 monotouch monodroid mobile_static, $(PROFILE))
22 ifndef VALID_PROFILE
23 LIBRARY_NAME = dummy-System.ComponentModel.DataAnnotations.dll
24 NO_INSTALL = yes
25 NO_SIGN_ASSEMBLY = yes
26 NO_TEST = yes
27 endif
28
29 include ../../build/library.make