🔄refactor: 使用OpenIddict 重构Identity

This commit is contained in:
yubaolee
2026-06-25 23:42:43 +08:00
parent 7a34fa7c51
commit 5e6ca18770
42 changed files with 697 additions and 2074 deletions
+25
View File
@@ -0,0 +1,25 @@
@echo off
chcp 936
setlocal enabledelayedexpansion
echo 正在检查12796端口占用情况...
rem 查找占用12796端口的进程
FOR /F "tokens=5" %%i IN ('netstat -ano ^| findstr :12796 ^| findstr LISTENING') DO (
SET pid=%%i
echo 发现占用12796端口的进程,PID: %%i
echo 正在查询进程信息...
tasklist | findstr %%i
echo 正在结束进程 %%i...
taskkill /F /PID %%i
echo 验证端口是否已释放...
netstat -ano | findstr :12796
goto :END
)
echo 未发现占用12796端口的进程。
:END
echo 操作完成。
pause