Files
PackagingMallShipper/release.bat
Administrator 9d7f01c29c feat: 添加版本管理发布脚本,修复文档版本号
- 新增 release.bat 一键发布脚本
  - 交互式版本号选择(保持/补丁+1/次版本+1/主版本+1/自定义)
  - 自动更新 csproj 和 setup.iss 中的版本号
  - 自动编译、复制文件、生成安装包
- 更新 BUILD_INSTALLER.md 添加发布脚本使用说明
- 修复 轻量级订单发货客户端方案.md 中的 .NET 版本号(4.8 -> 4.6.2)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-18 16:07:23 +08:00

169 lines
4.6 KiB
Batchfile

@echo off
chcp 65001 >nul
setlocal EnableDelayedExpansion
echo ========================================
echo PackagingMallShipper - Release Tool
echo ========================================
echo.
:: 检查 Inno Setup
set "ISCC="
if exist "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" (
set "ISCC=C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
)
if exist "C:\Program Files\Inno Setup 6\ISCC.exe" (
set "ISCC=C:\Program Files\Inno Setup 6\ISCC.exe"
)
if "%ISCC%"=="" (
echo [Error] Inno Setup 6 not found
echo.
echo Please download and install Inno Setup 6:
echo https://jrsoftware.org/isdl.php
echo.
pause
exit /b 1
)
:: 读取当前版本号
for /f "tokens=2 delims=<>" %%a in ('findstr /C:"<Version>" PackagingMallShipper\PackagingMallShipper.csproj') do (
set "CURRENT_VERSION=%%a"
)
echo [Info] Current version: %CURRENT_VERSION%
echo.
:: 询问是否更新版本
if "%1"=="" (
echo Options:
echo 1. Keep current version [%CURRENT_VERSION%]
echo 2. Increment patch version (x.x.X)
echo 3. Increment minor version (x.X.0)
echo 4. Increment major version (X.0.0)
echo 5. Enter custom version
echo.
set /p "CHOICE=Select option [1-5]: "
) else (
set "NEW_VERSION=%1"
goto :set_version
)
if "%CHOICE%"=="1" (
set "NEW_VERSION=%CURRENT_VERSION%"
goto :build
)
if "%CHOICE%"=="2" (
call :increment_patch %CURRENT_VERSION%
goto :set_version
)
if "%CHOICE%"=="3" (
call :increment_minor %CURRENT_VERSION%
goto :set_version
)
if "%CHOICE%"=="4" (
call :increment_major %CURRENT_VERSION%
goto :set_version
)
if "%CHOICE%"=="5" (
set /p "NEW_VERSION=Enter new version (e.g. 1.2.3): "
goto :set_version
)
set "NEW_VERSION=%CURRENT_VERSION%"
goto :build
:set_version
echo.
echo [Step 1] Updating version to %NEW_VERSION%...
:: 更新 csproj 文件中的版本号
powershell -Command "(Get-Content 'PackagingMallShipper\PackagingMallShipper.csproj') -replace '<Version>[0-9]+\.[0-9]+\.[0-9]+</Version>', '<Version>%NEW_VERSION%</Version>' -replace '<FileVersion>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+</FileVersion>', '<FileVersion>%NEW_VERSION%.0</FileVersion>' -replace '<AssemblyVersion>[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+</AssemblyVersion>', '<AssemblyVersion>%NEW_VERSION%.0</AssemblyVersion>' | Set-Content 'PackagingMallShipper\PackagingMallShipper.csproj' -Encoding UTF8"
:: 更新 setup.iss 文件中的版本号
powershell -Command "(Get-Content 'setup.iss') -replace '#define MyAppVersion \"[0-9]+\.[0-9]+\.[0-9]+\"', '#define MyAppVersion \"%NEW_VERSION%\"' | Set-Content 'setup.iss' -Encoding UTF8"
echo [Info] Version updated to %NEW_VERSION%
echo.
:build
echo [Step 2] Building Release version...
dotnet build -c Release
if %ERRORLEVEL% NEQ 0 (
echo [Error] Build failed!
pause
exit /b 1
)
echo.
echo [Step 3] Copying files to publish folder...
if not exist "publish" mkdir publish
if not exist "publish\x64" mkdir publish\x64
if not exist "publish\x86" mkdir publish\x86
copy /Y "PackagingMallShipper\bin\Release\net462\PackagingMallShipper.exe" "publish\" >nul
copy /Y "PackagingMallShipper\bin\Release\net462\PackagingMallShipper.exe.config" "publish\" >nul
copy /Y "PackagingMallShipper\bin\Release\net462\x64\SQLite.Interop.dll" "publish\x64\" >nul
copy /Y "PackagingMallShipper\bin\Release\net462\x86\SQLite.Interop.dll" "publish\x86\" >nul
if not exist "publish\PackagingMallShipper.exe" (
echo [Error] publish\PackagingMallShipper.exe not found
echo.
pause
exit /b 1
)
echo [Info] Files copied to publish folder
echo.
echo [Step 4] Compiling installer...
echo.
"%ISCC%" setup.iss
if %ERRORLEVEL% EQU 0 (
echo.
echo ========================================
echo [Success] Release completed!
echo.
echo Version: %NEW_VERSION%
echo Installer: installer\PackagingMallShipper_Setup_v%NEW_VERSION%.exe
echo ========================================
echo.
if exist "installer" explorer "installer"
) else (
echo.
echo [Error] Installer compilation failed, error code: %ERRORLEVEL%
)
pause
exit /b 0
:: ==========================================
:: Version increment functions
:: ==========================================
:increment_patch
for /f "tokens=1,2,3 delims=." %%a in ("%1") do (
set /a "PATCH=%%c+1"
set "NEW_VERSION=%%a.%%b.!PATCH!"
)
exit /b 0
:increment_minor
for /f "tokens=1,2,3 delims=." %%a in ("%1") do (
set /a "MINOR=%%b+1"
set "NEW_VERSION=%%a.!MINOR!.0"
)
exit /b 0
:increment_major
for /f "tokens=1,2,3 delims=." %%a in ("%1") do (
set /a "MAJOR=%%a+1"
set "NEW_VERSION=!MAJOR!.0.0"
)
exit /b 0