move all files

This commit is contained in:
2026-08-10 21:45:47 +02:00
parent 94b4ed7fb3
commit 26d3530b86
24 changed files with 47 additions and 48 deletions
+14
View File
@@ -0,0 +1,14 @@
@echo off
REM Starts MarcerGameDvdLauncher.exe (script is in scripts/, code in src/)
setlocal
set EXE_PATH=%~dp0..\src\MarcerGameDvdLauncher\bin\Release\net10.0\MarcerGameDvdLauncher.exe
if not exist "%EXE_PATH%" (
echo [ERROR] Application not built. Please run build.cmd first.
exit /b 1
)
pushd "%~dp0..\src\MarcerGameDvdLauncher\bin\Release\net10.0"
"MarcerGameDvdLauncher.exe"
popd