From 24ba5e5bda4dbab77d370d7b259b8175f5497122 Mon Sep 17 00:00:00 2001 From: julakali Date: Sun, 5 Jan 2020 02:54:25 +0100 Subject: [PATCH] Use msbuild instead of the deprecated xbuild --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 40b13ae3c..84d56f95b 100755 --- a/build.sh +++ b/build.sh @@ -103,9 +103,9 @@ BuildWithMSBuild() BuildWithXbuild() { export MONO_IOMAP=case - CheckExitCode xbuild /t:Clean $slnFile + CheckExitCode msbuild /t:Clean $slnFile mono $nuget restore $slnFile - CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile + CheckExitCode msbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile } LintUI()