Blog.Core/Blog.Core.Build.bat
2023-02-26 18:32:49 +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 Blog.Core.Api
dotnet run
cmd