exam11/build/installer.nsh
2025-09-10 14:27:20 +08:00

14 lines
395 B
Plaintext

; NSIS 脚本配置 - 最小化版本
; 仅保留必要的Unicode支持
Unicode true
; 移除所有可能导致警告的自定义文本定义
; 确保应用数据目录存在的最小化实现
!macro preInit
SetOutPath $INSTDIR
; 创建应用数据目录 - 不使用任何未定义的变量
SetShellVarContext current
CreateDirectory "$APPDATA\统计技能考试系统\data"
!macroend