| REM Copyright The OpenTelemetry AuthorsREM SPDX-License-Identifier: Apache-2.0REM Build with Visual Studio 2022set "BUILDTOOLS_VERSION=vs2022"set ARCH=x64if NOT "%1"=="" (  set ARCH=%1)if "%ARCH%"=="x64" (  REM Parameter needed for CMake Visual Studio 2022 generator  set CMAKE_ARCH=x64)cd %~dp0call setup-buildtools.cmdcall build.cmd
 |