Skip to content

Commit d1cc27f

Browse files
TheSmallPixelclaude
andcommitted
chore: add .gitignore and remove tracked build artifacts
Adds a .NET-aware .gitignore covering build output, IDE state, OS metadata, and editor backups. Removes the previously tracked .DS_Store and docs/enhanced_visualizer.js.backup files; the latter was an unreferenced 50KB editor leftover. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f1eb20b commit d1cc27f

3 files changed

Lines changed: 33 additions & 1520 deletions

File tree

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# .NET
2+
bin/
3+
obj/
4+
*.user
5+
*.suo
6+
*.userprefs
7+
.vs/
8+
.vscode/
9+
10+
# Build / test output
11+
[Dd]ebug/
12+
[Rr]elease/
13+
artifacts/
14+
TestResults/
15+
coverage/
16+
*.coverage
17+
*.coveragexml
18+
19+
# NuGet
20+
*.nupkg
21+
*.snupkg
22+
23+
# OS
24+
.DS_Store
25+
Thumbs.db
26+
27+
# Editor backups
28+
*.backup
29+
*.bak
30+
*~
31+
32+
# Node (in case docs tooling is added)
33+
node_modules/

0 commit comments

Comments
 (0)