代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
usage()
{
echo
echo "There are new changes on how we build. Use this script only for generic"
echo "build instructions that apply for both build native and build managed."
echo "Otherwise:"
echo
echo "Before Now"
echo "build.sh native build-native.sh"
echo "build.sh managed build-managed.sh"
echo
echo "For more information: https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/developer-guide.md"
echo "----------------------------------------------------------------------------"
echo
echo
}
if [ "$1" == "-?" ]; then
usage
fi
__scriptpath=$(cd "$(dirname "$0")"; pwd -P)
__workingDir=$(pwd -P)
if [ "$1" != "" ]; then
if [ -d $__workingDir/$1 ]; then
$__scriptpath/run.sh build-directory -directory:$__workingDir/$*
exit $?
fi
if [ -d $__scriptpath/src/$1 ]; then
$__scriptpath/run.sh build-directory -directory:$__scriptpath/$*
exit $?
fi
fi
"$__scriptpath/build-native.sh" $*
if [ $? -ne 0 ];then
exit 1
fi
"$__scriptpath/build-managed.sh" -BuildPackages=true $*
exit $?
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。