20 lines
168 B
Batchfile
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 |