Imported Upstream version 5.20.0.180

Former-commit-id: ff953ca879339fe1e1211f7220f563e1342e66cb
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-02-04 20:11:37 +00:00
parent 0e2d47d1c8
commit 0510252385
3360 changed files with 83827 additions and 39243 deletions

View File

@@ -13,7 +13,23 @@ LIB_REFS = $(PARENT_PROFILE)System $(PARENT_PROFILE)System.Core $(PARENT_PROFILE
$(XBUILD_UTILITIES) $(XBUILD_FRAMEWORK) $(XBUILD_ENGINE) $(XBUILD_TASKS)
KEYFILE = ../msfinal.pub
TEST_MCS_FLAGS =
TEST_RESOURCE_FILES = \
Test/resources/test.cs \
Test/resources/test.dll \
Test/resources/Sample.cs \
Test/resources/Sample.vb \
Test/resources/junk.txt \
Test/resources/binary/FancyStuff.dll \
Test/resources/binary/FancyStuff.dll.mdb \
Test/resources/binary/SimpleWrite.dll \
Test/resources/binary/SimpleWrite.dll.mdb \
Test/resources/binary/Testing.dll \
Test/resources/binary/Testing.dll.mdb \
Test/resources/binary/XbuildReferenceBugTest.exe \
Test/resources/binary/XbuildReferenceBugTest.exe.mdb \
Test/resources/binary/XbuildReferenceBugTest2.exe
TEST_MCS_FLAGS = $(foreach r, $(TEST_RESOURCE_FILES), -resource:$(r),$(r))
TEST_LIB_REFS = $(PARENT_PROFILE)System.Xml $(XBUILD_ENGINE) $(XBUILD_FRAMEWORK) $(XBUILD_TASKS) $(XBUILD_UTILITIES) $(PARENT_PROFILE)System.Core
TEST_NUNITLITE_APP_CONFIG_RUNTIME=Test/test-config-file-$(PROFILE)
@@ -22,11 +38,7 @@ ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
TEST_LIB_REFS += Microsoft.Build
endif
EXTRA_DISTFILES = \
Test/resources/test.cs \
Test/resources/Sample.cs \
Test/resources/Sample.vb \
Test/resources/junk.txt
EXTRA_DISTFILES = $(filter-out Test/resources/test.dll, $(TEST_RESOURCE_FILES))
Test/resources/test.dll: Test/resources/test.cs
$(CSCOMPILE) -r:$(topdir)/class/lib/$(PROFILE)/mscorlib.dll -target:library /out:$@ $<