Blog.Core/Blog.Core.Build.bat
2019-05-15 16:16:45 +08:00

21 lines
173 B
Batchfile

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