Files
Api/DouyinApi.Build.bat
2025-11-04 21:09:16 +08:00

20 lines
168 B
Batchfile

@echo off
for /f "tokens=5" %%i in ('netstat -aon ^| findstr ":9291"') do (
set n=%%i
)
taskkill /f /pid %n%
dotnet build
cd DouyinApi.Api
dotnet run
cmd