- Matrix build on macos-13 (x64) and macos-14 (arm64) - Self-contained single-file publish via .NET 10 preview - Smoke test: compile hello.pe with --target macos and run native Mach-O - Package as tar.gz (preserves POSIX perms) and upload artifact - Auto-publish GitHub Release on v* tag push - gitignore: exclude stray /gui build output at repo root
34 行
626 B
Plaintext
34 行
626 B
Plaintext
# 构建产物
|
||
bin/
|
||
obj/
|
||
publish/
|
||
|
||
# WiX 生成文件
|
||
*.wixpdb
|
||
*.cab
|
||
*_dir.wxs
|
||
|
||
# 图标与许可协议 RTF:作为构建输入纳入版本库(源自 logo.png 和 LICENSE)
|
||
# src/PazeE.Installer/logo.ico — 已跟踪
|
||
# src/PazeE.Installer/license.rtf — 已跟踪
|
||
|
||
# .NET
|
||
*.user
|
||
*.suo
|
||
.vs/
|
||
|
||
# IDE 文档
|
||
.trae/
|
||
|
||
# 测试目录:仅保留源文件 (.pe/.c/.h) 与辅助脚本 (.ps1/.md)
|
||
# 自动忽略所有编译产物(*.exe / *_linux / *_macos / *_los4.elf / *_arm ...)
|
||
tests/*
|
||
!tests/*.pe
|
||
!tests/*.c
|
||
!tests/*.h
|
||
!tests/*.ps1
|
||
!tests/*.md
|
||
|
||
# 根目录杂散编译产物(paze 直接输出到当前目录时)
|
||
/gui
|