add ISafeSerializationData
[mcs.git] / class / System.Web.Routing / Makefile
blob941668fbe877e2a86db792310f246d94d2450678
1 thisdir = class/System.Web.Routing
2 SUBDIRS =
3 include ../../build/rules.make
5 LIBRARY = System.Web.Routing.dll
6 LIB_MCS_FLAGS = \
7 /r:System.dll \
8 /r:System.Core.dll \
9 /r:System.Web.dll \
10 /r:System.Web.Abstractions.dll
12 ifeq (2.0, $(FRAMEWORK_VERSION))
13 # This is a .NET 3.5 only assembly, but built during the 2.0 build
14 LIB_MCS_FLAGS += -d:NET_3_5 -d:SYSTEMCORE_DEP
15 endif
17 ifdef DEBUG
18 LIB_MCS_FLAGS += -define:DEBUG
19 endif
21 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
23 EXTRA_DISTFILES =
25 # This is a .NET 3.5+ assembly
26 VALID_PROFILE := $(filter net_2_0 net_4_0, $(PROFILE))
27 ifndef VALID_PROFILE
28 LIBRARY_NAME = dummy-System.Web.Routing.dll
29 NO_INSTALL = yes
30 NO_SIGN_ASSEMBLY = yes
31 NO_TEST = yes
32 endif
34 include ../../build/library.make