3b5af64606
- .gitignore: 루트 Release/ 배포 폴더 추적 해제 (빌드 중간물은 계속 제외) - Release/260618/: 전 프로젝트 publish 결과 수집 (~762MB) - ErvDashboard.exe / DiffuserSimulator.exe / ERVSimulator.exe - HoodSimulator.exe / RJ2RoomConSimulator.exe - ErvCollector/ (웹 수집서버 폴더 통째: exe+appsettings+wwwroot) - Firmware/ HERV.bin/.hex/.elf (RoomCtrl_Push 반영본) - 모두 self-contained 단일 exe (노트북에 .NET 미설치여도 실행) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
47 lines
671 B
Plaintext
47 lines
671 B
Plaintext
# ── 펌웨어 빌드 산출물 ──
|
|
program/build/
|
|
*.o
|
|
*.d
|
|
*.elf
|
|
*.bin
|
|
*.hex
|
|
*.map
|
|
*.lst
|
|
*.crf
|
|
*.axf
|
|
*.htm
|
|
*.scvd
|
|
*.dep
|
|
*.bak
|
|
*.lnp
|
|
*.iex
|
|
*.sct
|
|
*.__i
|
|
|
|
# ── C# / .NET 빌드 산출물 ──
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
*.user
|
|
*.suo
|
|
.vs/
|
|
*_wpftmp.csproj
|
|
|
|
# ── 배포 실행파일 (펌웨어 제외) : 루트 Release/<날짜>/ 는 git 추적 ──
|
|
# ([Rr]elease/ 가 막은 것을 루트 배포폴더만 해제. bin/Release 등은 [Bb]in/ 으로 계속 제외)
|
|
!/Release/
|
|
!/Release/**
|
|
|
|
# ── OS / 에디터 ──
|
|
Thumbs.db
|
|
desktop.ini
|
|
.DS_Store
|
|
|
|
# ── 로그 / 임시 ──
|
|
*.log
|
|
*.tmp
|
|
|
|
# ── Claude Code 로컬 설정 ──
|
|
.claude/
|