1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-19 23:35:42 +02:00
tldr/pages.es/windows/vswhere.md
Starsoon 82eb0aa1b6
pages.es/windows/*: add Spanish translation (#16716)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-07-20 09:46:34 +03:00

20 lines
699 B
Markdown

# vswhere
> Localiza instalaciones de Visual Studio 2017 y posteriores.
> Más información: <https://github.com/microsoft/vswhere>.
- Encontrar la ruta de vcvarsall.bat para configurar variables de entorno:
`vswhere -products * -latest -prerelease -find **\VC\Auxiliary\Build\vcvarsall.bat`
- Encontrar el directorio del compilador x64 MSVC (cl.exe, etc.):
`vswhere -products * -latest -prerelease -find **\Hostx64\x64\*`
- Encontrar el directorio de Clang incluido con Visual Studio (clang-cl, clang-tidy, etc.):
`vswhere -products * -latest -prerelease -find **\Llvm\bin\*`
- Encontrar la ruta de `MSBuild.exe`:
`vswhere -products * -latest -prerelease -find MSBuild\**\Bin\MSBuild.exe`