Добавь README и бат скрипты

This commit is contained in:
2026-04-09 20:20:57 +03:00
parent 70b2495ad6
commit a9a6c304e7
4 changed files with 199 additions and 0 deletions

17
build.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
setlocal
set "PROJECT=anti-syktsu-proxy.csproj"
set "RUNTIME=win-x64"
set "CONFIG=Release"
set "OUTDIR=publish\%RUNTIME%"
echo [build] Publishing %PROJECT%...
dotnet publish "%PROJECT%" -c %CONFIG% -r %RUNTIME% --self-contained false -o "%OUTDIR%"
if errorlevel 1 (
echo [build] FAILED
exit /b 1
)
echo [build] OK: %OUTDIR%\anti-syktsu-proxy.exe
exit /b 0