18 строки
508 B
Batchfile
18 строки
508 B
Batchfile
@REM Copyright (c) Microsoft. All rights reserved.
|
|
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
setlocal
|
|
|
|
ver
|
|
msbuild -version
|
|
|
|
set build-root=%~dp0..
|
|
rem // resolve to fully qualified path
|
|
for %%i in ("%build-root%") do set build-root=%%~fi
|
|
|
|
REM -- C --
|
|
cd %build-root%\build_all\windows
|
|
call build.cmd --run-unittests --run-e2e-tests --no-uploadtoblob --provisioning --use-edge-modules --config Debug %*
|
|
if errorlevel 1 goto :eof
|
|
cd %build-root%
|