7 строки
211 B
Batchfile
7 строки
211 B
Batchfile
|
@echo off
|
||
|
|
||
|
REM Copyright (c) Microsoft. All rights reserved.
|
||
|
|
||
|
powershell -ExecutionPolicy Bypass -NoProfile -NoLogo -Command "%~dp0build.ps1 %*; exit $LastExitCode;"
|
||
|
if %errorlevel% neq 0 exit /b %errorlevel%
|