Files
biztalk-checkmk-pulse/scripts/build-release.cmd
T
2026-07-29 09:01:39 +02:00

12 lines
296 B
Batchfile

@echo off
setlocal
where msbuild.exe >nul 2>nul
if errorlevel 1 (
echo MSBuild.exe was not found in PATH. Run this from a Visual Studio Developer Command Prompt.
exit /b 1
)
msbuild BizTalkCheckmkPulse.sln /p:Configuration=Release /p:Platform="Any CPU" /m:1 /v:minimal
exit /b %ERRORLEVEL%