Merge pull request #1542 from ninjarobot/UriTemplateMatchException
[mono.git] / mcs / class / System.IdentityModel / Makefile
1 thisdir = class/System.IdentityModel
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
6 OTHER_LIB_MCS_FLAGS = -r:System.Web.ApplicationServices.dll
7 endif
8
9 LIBRARY = System.IdentityModel.dll
10 LIB_MCS_FLAGS = \
11                 /d:NET_3_0      \
12                 /r:System.dll \
13                 /r:System.Xml.dll \
14                 /r:System.Security.dll \
15                 /r:System.Web.dll \
16                 /r:System.Configuration.dll \
17                 /r:Mono.Security.dll \
18                 /r:System.Runtime.Serialization.dll \
19                 $(OTHER_LIB_MCS_FLAGS)
20
21 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
22
23 EXTRA_DISTFILES = \
24         Test/Resources/test.cer \
25         Test/Resources/test_neg_serial.cer \
26         Test/Resources/test.pfx \
27         Test/Resources/test2.pfx
28
29 VALID_PROFILE := $(filter net_4_5, $(PROFILE))
30 ifndef VALID_PROFILE
31 LIBRARY_NAME = dummy-System.IdentityModel.dll
32 NO_INSTALL = yes
33 NO_SIGN_ASSEMBLY = yes
34 NO_TEST = yes
35 endif
36
37 include ../../build/library.make