Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2006-11-14 10:33:56 +0300
committerAtsushi Eno <atsushieno@gmail.com>2006-11-14 10:33:56 +0300
commit327dbbefde454d289463875f916326f4be7adb2a (patch)
treee31bd9dae24a6ef00d5d89093c8b0caf18e7a4f9 /mcs/class/System.Web.Services/Makefile
parent6c0c6858a8f6ac89ba6d0358ee72fe1582aec9c5 (diff)
2006-11-14 Atsushi Enomoto <atsushi@ximian.com>
* wsdl-1.1.xsd : imported from the spec site (schemas.xmlsoap.org) to be used for ServiceDescription.Schema. * ServiceDescription.cs : added Schema property and validating Read() overloads. * ServiceDescriptionTest.cs : added test for invalid Read() inputs. * Makefile : added *.wsdl to the build. Added wsdl and genxs to EXTRA_DISTFILES. svn path=/trunk/mcs/; revision=67815
Diffstat (limited to 'mcs/class/System.Web.Services/Makefile')
-rw-r--r--mcs/class/System.Web.Services/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/mcs/class/System.Web.Services/Makefile b/mcs/class/System.Web.Services/Makefile
index 1adae6c9eb9..7e13d882946 100644
--- a/mcs/class/System.Web.Services/Makefile
+++ b/mcs/class/System.Web.Services/Makefile
@@ -12,11 +12,16 @@ LIB_MCS_FLAGS = \
-r:System.Web.dll
ifeq (net_2_0, $(PROFILE))
-LIB_MCS_FLAGS += -r:System.Configuration.dll
+LIB_MCS_FLAGS += \
+ -r:System.Configuration.dll \
+ -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd
endif
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618
-EXTRA_DISTFILES = Test/System.Web.Services.Description/test.wsdl
+EXTRA_DISTFILES = \
+ System.Web.Services.Description/wsdl-1.1.xsd \
+ System.Web.Services.Description/wsdl.genxs \
+ Test/System.Web.Services.Description/test.wsdl
include ../../build/library.make