Fix: xbuild doesn't support /m parameter

This commit is contained in:
ta264 2016-01-27 14:11:29 +00:00
parent 9f523bb167
commit f84b7904e6
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ BuildWithXbuild()
export MONO_IOMAP=case
CheckExitCode xbuild /t:Clean $slnFile
mono $nuget restore $slnFile
CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /m /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
}
Build()