2014-08-13 10:39:27 +01:00
|
|
|
thisdir = class/System.Web.Services
|
|
|
|
SUBDIRS =
|
|
|
|
include ../../build/rules.make
|
|
|
|
|
|
|
|
LIBRARY = System.Web.Services.dll
|
2017-10-19 20:04:20 +00:00
|
|
|
KEYFILE = ../msfinal.pub
|
2016-02-22 11:00:01 -05:00
|
|
|
ifdef MOBILE_PROFILE
|
2015-08-26 07:17:56 -04:00
|
|
|
LIB_REFS = System System.Xml
|
2014-08-13 10:39:27 +01:00
|
|
|
LIB_MCS_FLAGS = \
|
2017-04-10 11:41:01 +00:00
|
|
|
-nowarn:649 -nowarn:168 \
|
2014-08-13 10:39:27 +01:00
|
|
|
-resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd \
|
|
|
|
-resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd \
|
|
|
|
-resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd
|
|
|
|
else
|
2015-08-26 07:17:56 -04:00
|
|
|
LIB_REFS = System System.EnterpriseServices System.Xml System.Data
|
2017-04-10 11:41:01 +00:00
|
|
|
LIB_MCS_FLAGS = -nowarn:168,612,618,649 -d:MONO_BROKEN_CONFIGURATION_DLL
|
2014-08-13 10:39:27 +01:00
|
|
|
|
2015-07-20 03:39:00 -04:00
|
|
|
ifndef NO_SYSTEM_WEB_DEPENDENCY
|
2018-05-10 08:37:03 +00:00
|
|
|
API_BIN_REFS := System.Web
|
2015-07-20 03:39:00 -04:00
|
|
|
endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
2015-08-26 07:17:56 -04:00
|
|
|
ifndef NO_SYSTEM_DESIGN_DEPENDENCY
|
2018-05-10 08:37:03 +00:00
|
|
|
LIB_REFS += System.Design
|
2015-08-26 07:17:56 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef NO_SYSTEM_DIRECTORY_SERVICES_DEPENDENCY
|
|
|
|
LIB_REFS += System.DirectoryServices
|
|
|
|
endif
|
|
|
|
|
|
|
|
LIB_REFS += System.Configuration
|
2014-08-13 10:39:27 +01:00
|
|
|
LIB_MCS_FLAGS += \
|
|
|
|
-resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd \
|
|
|
|
-resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd \
|
|
|
|
-resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd
|
|
|
|
endif
|
|
|
|
|
|
|
|
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618
|
|
|
|
|
2016-02-22 11:00:01 -05:00
|
|
|
ifndef NO_THREAD_ABORT
|
|
|
|
TEST_MCS_FLAGS += -d:MONO_FEATURE_THREAD_ABORT
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef NO_THREAD_SUSPEND_RESUME
|
|
|
|
TEST_MCS_FLAGS += -d:MONO_FEATURE_THREAD_SUSPEND_RESUME
|
|
|
|
endif
|
|
|
|
|
2019-02-04 20:11:37 +00:00
|
|
|
TEST_RESOURCE_FILES = $(wildcard Test/System.Web.Services.Description/*.wsdl)
|
|
|
|
|
|
|
|
TEST_MCS_FLAGS += $(foreach r, $(TEST_RESOURCE_FILES), -resource:$(r),$(r))
|
|
|
|
|
2019-04-12 14:10:50 +00:00
|
|
|
#
|
|
|
|
# This is only used to test the tool in `--existing` mode, see my comment
|
|
|
|
# at top top of tools/resx2sr/resx2sr.cs
|
|
|
|
#
|
|
|
|
|
|
|
|
RESX_EXTRA_ARGUMENTS = \
|
|
|
|
--in=corefx/SR.template.cs --name=System.Web.Services.Res --existing
|
|
|
|
|
|
|
|
RESX_RESOURCE_STRING = \
|
|
|
|
../referencesource/System.Web.Services/System.Web.Services.txt
|
|
|
|
|
|
|
|
|
2014-08-13 10:39:27 +01:00
|
|
|
EXTRA_DISTFILES = \
|
|
|
|
System.Web.Services.Description/web-reference.xsd \
|
|
|
|
System.Web.Services.Description/wsdl-1.1.xsd \
|
|
|
|
System.Web.Services.Description/wsdl-1.1-soap.xsd \
|
|
|
|
System.Web.Services.Description/wsdl.genxs \
|
2019-02-04 20:11:37 +00:00
|
|
|
$(TEST_RESOURCE_FILES)
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
include ../../build/library.make
|