/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
external/source/HostingCLR_inject/make.bat
26 строк
486 B
Ashley Donaldson
Building 32-bit execute assembly
29 апр 2025, 02:44
29 апр 2025, 02:44
7c7a56f
Код
Авторство
О чём код?
@ECHO OFF IF "%VCINSTALLDIR%" == "" GOTO NEED_VS IF "%1"=="X64" GOTO BUILD_X64 ECHO "Building HostingCLR All Platforms (Release)" SET PLAT=all GOTO RUN :BUILD_X64 ECHO "Building HostingCLR x64 (Release)" SET PLAT=x64 GOTO RUN :RUN PUSHD workspace msbuild.exe make.msbuild /target:%PLAT% POPD GOTO :END :NEED_VS ECHO "This command must be executed from within a Visual Studio Command prompt." ECHO "This can be found under Microsoft Visual Studio 2017 -> Visual Studio Tools" :END