Remove build.bat

This commit is contained in:
administrator 2026-04-19 22:46:53 +02:00
parent 62c36acc48
commit c14a364337

View file

@ -1,17 +0,0 @@
@echo off
setlocal
set PROJ=C:\Users\janwu\OneDrive - dimedtec GmbH\Programmierung\MailPrint\MailPrint\MailPrint.csproj
dotnet restore "%PROJ%"
if errorlevel 1 goto :err
dotnet build "%PROJ%" -c Release
if errorlevel 1 goto :err
dotnet publish "%PROJ%" -c Release -r win-x64 --self-contained false -o "C:\Users\janwu\OneDrive - dimedtec GmbH\Programmierung\MailPrint\publish"
if errorlevel 1 goto :err
echo.
echo === BUILD ERFOLGREICH ===
goto :end
:err
echo.
echo === BUILD FEHLGESCHLAGEN ===
exit /b 1
:end