This commit is contained in:
Wieland, Marc
2026-06-26 14:49:30 +02:00
parent f4512a807c
commit 7d9eac498a
3 changed files with 89 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
setlocal
echo === 1. Bereinige alte Build-Dateien ===
dotnet clean
if errorlevel 1 exit /b %errorlevel%
echo === 2. Baue die gesamte Solution ===
dotnet build
if errorlevel 1 exit /b %errorlevel%
echo === 3. Starte den Server ^& oeffne Browser ===
start "timetracker-browser" powershell -NoProfile -Command "Start-Sleep -Seconds 3; Start-Process 'http://localhost:5065'"
dotnet run --project timetracker.Server\timetracker.Server.csproj
exit /b %errorlevel%