b673eeb40a
D:\XPData ├── DataBase\ # SQLite 数据库,例如 XP.db ├── DetectorImages\ # 探测器采集图像 ├── Logs\ # Serilog 运行日志 ├── Dump\ # 异常 Dump 文件 ├── Report\ # 报告输出目录 ├── Plan\ # 工艺 / CNC / 检测程序数据 ├── Tools\ # 工具相关数据 └── Data\ # 其他运行数据
76 lines
1.2 KiB
Plaintext
76 lines
1.2 KiB
Plaintext
# .gitignore 文件内容
|
|
# 忽略编译输出
|
|
**/bin/
|
|
**/obj/
|
|
**/Debug/
|
|
**/Release/
|
|
|
|
# 忽略用户配置文件
|
|
.vs/
|
|
.vscode/
|
|
*.user
|
|
*.suo
|
|
|
|
# 忽略Nuget包
|
|
packages/
|
|
*.nupkg
|
|
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
x64/
|
|
x86/
|
|
[Aa][Rr][Mm]/
|
|
[Aa][Rr][Mm]64/
|
|
bld/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Ll]ib/ # 重点:过滤lib文件夹
|
|
[Ll]og/
|
|
[Ll]ogs/
|
|
lib/
|
|
XP.ImageProcessing/
|
|
XP.ImageProcessing.SmokeTest/
|
|
ImageProcessing.sln
|
|
|
|
# 排除 Libs 目录中的 DLL 和 PDB 文件(但保留目录结构)
|
|
XplorePlane/Libs/Hardware/*.dll
|
|
XplorePlane/Libs/Hardware/*.pdb
|
|
XplorePlane/Libs/Native/*.dll
|
|
XplorePlane/Libs/Native/*.pdb
|
|
XplorePlane/XplorePlane/Libs/ImageProcessing/*.dll
|
|
|
|
# 保留 .gitkeep 文件以维持目录结构
|
|
!XplorePlane/Libs/**/.gitkeep
|
|
|
|
# 排除日志文件
|
|
logs/
|
|
*.log
|
|
|
|
# 排除 .kiro 配置目录
|
|
.kiro/README.md
|
|
.kiro/SETUP_COMPLETE.md
|
|
.kiro/steering/
|
|
|
|
# 排除文档目录
|
|
Doc/
|
|
|
|
# 排除第三方库目录
|
|
lib/RCWPF/
|
|
|
|
# 排除大模型文件
|
|
ExternalLibraries/Models/
|
|
|
|
# 排除测试目录
|
|
XplorePlane/Tests/
|
|
ExternalLibraries/Telerik/
|
|
build_out.txt
|
|
XplorePlane/data/
|
|
XplorePlane.Tests/bin_codex/
|
|
|
|
DataBase/XP.db
|
|
DetectorImages/
|
|
Dump/
|
|
Report/
|
|
XplorePlane.Tests/TestResults/
|
|
ReleaseFiles/win-x64/
|