Blog.Core/Blog.Core.Build.bat
2021-08-24 15:21:25 +08:00

21 lines
177 B
Batchfile

git pull
@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