| 123456789101112131415161718192021 | REM Copyright The OpenTelemetry AuthorsREM SPDX-License-Identifier: Apache-2.0SETLOCAL ENABLEEXTENSIONStype ci\docfx.json > docfx.jsontype ci\toc.yml > toc.ymldocfx build docfx.json > docfx.logDEL docfx.json 2> NULDEL toc.yml 2> NUL@IF NOT %ERRORLEVEL% == 0 (  type docfx.log  ECHO Error: docfx build failed. 1>&2  EXIT /B %ERRORLEVEL%)@type docfx.log@type docfx.log | findstr /C:"Build succeeded."@IF NOT %ERRORLEVEL% == 0 (  ECHO Error: you have introduced build warnings. 1>&2  EXIT /B %ERRORLEVEL%)
 |