/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
external/source/HostingCLR_inject/make.msbuild
17 строк
687 B
Ashley Donaldson
Building 32-bit execute assembly
29 апр 2025, 02:44
29 апр 2025, 02:44
7c7a56f
Код
Авторство
О чём код?
<?xml version="1.0" standalone="yes"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <SolutionPath>.\HostingCLR.sln</SolutionPath> </PropertyGroup> <Target Name="all" DependsOnTargets="x64;Win32" /> <Target Name="Win32"> <Message Text="Building HostingCLR x86 Release version" /> <MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=Win32" Targets="Clean;Rebuild"/> </Target> <Target Name="x64"> <Message Text="Building HostingCLR x64 Release version" /> <MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=x64" Targets="Clean;Rebuild"/> </Target> </Project>