mirror of
https://github.com/ckaczor/WixBalExtensionExt.git
synced 2026-01-19 09:45:37 -05:00
Initial commit
This commit is contained in:
25
bafunctions/build.bat
Normal file
25
bafunctions/build.bat
Normal file
@@ -0,0 +1,25 @@
|
||||
@echo off
|
||||
|
||||
echo Configuring environment...
|
||||
set MSBUILD="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
|
||||
echo.
|
||||
|
||||
set outdir=%~dp0build
|
||||
|
||||
%MSBUILD% Version.proj
|
||||
%MSBUILD% bafunctions.vcxproj /t:Rebuild /p:Configuration=Release,Platform=Win32 /p:RunCodeAnalysis=false /p:DefineConstants="TRACE" /p:OutDir="%outdir%\\" /l:FileLogger,Microsoft.Build.Engine;logfile=build.log
|
||||
if %errorlevel% neq 0 (
|
||||
echo Build failed
|
||||
pause
|
||||
goto :EOF
|
||||
)
|
||||
|
||||
copy build\bafunctions.dll ..\Examples /y
|
||||
|
||||
echo.
|
||||
|
||||
goto :EOF
|
||||
|
||||
REM *****************************************************************
|
||||
REM End of Main
|
||||
REM *****************************************************************
|
||||
Reference in New Issue
Block a user