Imported Upstream version 6.12.0.86

Former-commit-id: 7a84ce7d08c42c458ac8e74b27186ca863315d79
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2020-07-10 08:44:59 +00:00
parent 92747312ea
commit 0b380204a4
812 changed files with 26901 additions and 9053 deletions

View File

@@ -3,19 +3,11 @@ CONFIGURATION = Debug
all: build check
build: prepare
$(MSBUILD) ../monolinker.sln /p:Configuration=$(CONFIGURATION)
build:
$(MSBUILD) ../monolinker.sln /restore /p:Configuration=$(CONFIGURATION) /p:MonoBuild=true
clean:
$(MSBUILD) ../monolinker.sln /t:clean
$(MSBUILD) ../monolinker.sln /p:MonoBuild=true /t:clean
prepare:
nuget help | head -1
nuget restore ../external/cecil/
nuget restore ../monolinker.sln
# The nunit runner used below seems to expect the old package layout.
# This could potentially be removed with an update to nunit.
nuget restore -PackagesDirectory ../packages ../test/Mono.Linker.Tests/packages.config
check: prepare
mono ../packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe --result="TestResults.xml;format=nunit2" ../test/Mono.Linker.Tests/bin/$(CONFIGURATION)/net471/Mono.Linker.Tests.dll
check:
$(MSBUILD) ../test/Mono.Linker.Tests/Mono.Linker.Tests.csproj /p:MonoBuild=true /t:RunTestsOnMono