加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.bat 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
@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" %*
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化