/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
external/source/vncdll/make.msbuild
18 строк
693 B
OJ
Update project VS 2013, clean CLI build
20 дек 2013, 03:49
Не верифицирован
20 дек 2013, 03:49
34cdec5
Код
Авторство
О чём код?
<?xml version="1.0" standalone="yes"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <SolutionPath>.\vncdll.sln</SolutionPath> </PropertyGroup> <Target Name="all" DependsOnTargets="x86;x64" /> <Target Name="x86"> <Message Text="Building VNCDLL x86 Release version" /> <MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=Win32" Targets="Clean;Rebuild"/> </Target> <Target Name="x64"> <Message Text="Building VNCDLL x64 Release version" /> <MSBuild Projects="$(SolutionPath)" Properties="Configuration=Release;Platform=x64" Targets="Clean;Rebuild"/> </Target> </Project>