git-svn-id: https://svn.code.sf.net/p/gettextnet/code@51 cfd95cc2-f724-4227-9a96-9a83de4730d4
This commit is contained in:
arbinada 2013-03-18 11:44:18 +00:00
Родитель be68769141
Коммит dbae5afd30
1 изменённых файлов: 25 добавлений и 0 удалений

25
build_all.cmd Normal file
Просмотреть файл

@ -0,0 +1,25 @@
@echo off
call "%~pd0.\set_env.cmd"
if errorlevel 1 (
echo.!!!
echo.Rename file "set_env.cmd.template" to "set_env.cmd" and edit it to corect path for .NET framework
echo.!!!
goto batch_failed
)
set COMMON_BUILD_OPTIONS=/target:Build /verbosity:quiet
call "%DOTNET_HOME%\MSBuild" "%~pd0.\GNU.Gettext\GettextDotNetVS2010.sln" %COMMON_BUILD_OPTIONS% /property:configuration=Debug
if errorlevel 1 goto batch_failed
call "%DOTNET_HOME%\MSBuild" "%~pd0.\GNU.Gettext\GettextDotNetVS2010.sln" %COMMON_BUILD_OPTIONS% /property:configuration=Release
if errorlevel 1 goto batch_failed
goto batch_ok
:batch_failed
echo Build failed
exit /b 1
:batch_ok
echo Built OK
exit /b 0