Merge pull request #1542 from ninjarobot/UriTemplateMatchException
[mono.git] / mcs / class / System.Web.Routing / Makefile
1 thisdir = class/System.Web.Routing
2 SUBDIRS = 
3 include ../../build/rules.make
4
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
11
12 ifdef DEBUG
13 LIB_MCS_FLAGS += -define:DEBUG
14 endif
15
16 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
17
18 EXTRA_DISTFILES =
19
20 # This is a .NET 3.5+ assembly
21 VALID_PROFILE := $(filter net_4_5, $(PROFILE))
22 ifndef VALID_PROFILE
23 LIBRARY_NAME = dummy-System.Web.Routing.dll
24 NO_INSTALL = yes
25 NO_SIGN_ASSEMBLY = yes
26 NO_TEST = yes
27 endif
28
29 include ../../build/library.make