mirror of
https://github.com/skoelle/marcer-gamedvd-launcher.git
synced 2026-09-17 18:50:25 +00:00
17 lines
538 B
Batchfile
17 lines
538 B
Batchfile
REM Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de)
|
|
REM Licensed under the MIT License. See LICENSE file in project root for details.
|
|
@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
|