Add unit test for AggregateException.GetBaseException that works on .net but is broke...
[mono.git] / mcs / class / Microsoft.Build / Makefile
1 thisdir = class/Microsoft.Build
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = Microsoft.Build.dll
6
7 ifneq (4, $(FRAMEWORK_VERSION_MAJOR))
8 LIBRARY_NAME = dummy-Microsoft.Build.dll
9 NO_INSTALL = yes
10 NO_TEST = yes
11 NO_SIGN_ASSEMBLY = yes
12 endif
13
14 LIB_MCS_FLAGS = \
15         /r:$(corlib)                            \
16         /r:System.dll                           \
17         /r:System.Core.dll                      \
18         /r:System.Xml.dll                       \
19         /r:Microsoft.Build.Engine.dll           \
20         /r:Microsoft.Build.Framework.dll        \
21         /d:MICROSOFT_BUILD_DLL
22         
23 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
24
25 EXTRA_DISTFILES = \
26         Microsoft.Build.Internal/ExpressionParser.jay   \
27         Test/FunctionalTestReferenceProject.csproj      \
28         Test/FunctionalTestReferenceProject3.csproj     \
29         Test/Microsoft.Build.Test.csproj        \
30         Test/Microsoft.Build.csproj
31
32 EXPR_PARSER = Microsoft.Build.Internal/ExpressionParser
33
34 $(EXPR_PARSER).cs: $(EXPR_PARSER).jay $(topdir)/jay/skeleton.cs
35         (cd Microsoft.Build.Internal; $(topdir)/../jay/jay -ctv < $(topdir)/../jay/skeleton.cs ExpressionParser.jay > ExpressionParser.cs)
36
37 BUILT_SOURCES = $(EXPR_PARSER).cs
38
39 include ../../build/library.make
40
41 export TESTING_MONO=a
42 XBUILD_DIR=../../tools/xbuild
43 XBUILD_FRAMEWORK_FOLDERS_PATH=xbuild-testing
44 include $(XBUILD_DIR)/xbuild_targets.make