Files
Api/DouyinApi.Build.bat

20 lines
168 B
Batchfile
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
@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