sdk/build.cmd

13 строки
443 B
Batchfile
Исходник Постоянная ссылка Обычный вид История

2016-08-02 08:59:26 +03:00
@echo off
echo %* | findstr /C:"-pack" >nul
if %errorlevel%==0 (
set PackInstaller=
) else (
REM disable crossgen for inner-loop builds to save a ton of time
set PackInstaller=/p:PackInstaller=false
set DISABLE_CROSSGEN=true
)
powershell -NoLogo -NoProfile -ExecutionPolicy ByPass -command "& """%~dp0eng\common\build.ps1""" -restore -build -nativeToolsOnMachine -msbuildEngine dotnet %PackInstaller% %*"
exit /b %ErrorLevel%