代码拉取完成,页面将自动刷新
@echo off
where git >NUL
if NOT ["%errorlevel%"]==["0"] (
echo git not found on PATH
pause
exit /b %errorlevel%
)
echo Restoring git submodules
git submodule update --init --recursive
if NOT ["%errorlevel%"]==["0"] (
pause
exit /b %errorlevel%
)
where dotnet >NUL
if NOT ["%errorlevel%"]==["0"] (
echo dotnet not found on PATH. Install .NET Core!
pause
exit /b %errorlevel%
)
If "%1"=="auto" (
echo building setupAuto.csproj
dotnet build setup/setupAuto.csproj --output "setup/bin/Debug/net6.0-windows"
if NOT ["%errorlevel%"]==["0"] (
pause
exit /b %errorlevel%
)
"setup/bin/Debug/net6.0-windows/setupAuto.exe" %2
) Else (
echo building setup.csproj
dotnet build setup/setup.csproj --output "setup/bin/Debug/net6.0-windows"
if NOT ["%errorlevel%"]==["0"] (
pause
exit /b %errorlevel%
)
start "" "setup/bin/Debug/net6.0-windows/setup.exe" %*
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。