add build script to create deploy package

This commit is contained in:
2026-07-16 10:42:35 +02:00
parent f35ea865a2
commit 8436debdbb
4 changed files with 136 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
@echo off
SETLOCAL EnableDelayedExpansion
echo %cmdcmdline% | findstr /i /c:"%~nx0" >NUL && set iscommandline=1
echo %PSModulePath% | findstr /i /c:"%USERPROFILE%" >NUL && set ispowershell=1
cd /D "%~dp0"
SET UserOutputPath=
IF NOT "%~1"=="" (
SET OutputPath=-OutputPath "!UserOutputPath!"
)
@pwsh -NoProfile -ExecutionPolicy Bypass -Command .\scripts\build-deploy-package.ps1 !OutputPath!
IF DEFINED iscommandline IF NOT DEFINED ispowershell pause
ENDLOCAL