Add BizTalk Checkmk Pulse local check

This commit is contained in:
2026-07-22 11:34:28 +02:00
commit 7660dc4555
20 changed files with 1919 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
@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 /v:minimal
exit /b %ERRORLEVEL%