初始化工程

This commit is contained in:
2025-07-15 15:33:35 +08:00
parent ead49da3e8
commit bbd78128d0
301 changed files with 23953 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
@echo off
setlocal enabledelayedexpansion
:: 输入目标文件夹路径
set "baseDir=Protobuf"
set "path=ProtobufCompiler/bin"
:: 转换为绝对路径并确保以反斜杠结尾
for %%I in ("%baseDir%") do set "baseDirAbs=%%~fI\"
:: 递归遍历所有文件并输出包含父目录名的相对路径
for /r "%baseDirAbs%" %%F in (*) do (
set "absPath=%%F"
set "relPath=!absPath:%baseDirAbs%=!"
echo %baseDir%\!relPath!
call protoc.exe --csharp_out=generated %baseDir%\!relPath!
)
endlocal
pause