Skip to content

Commit 974ec59

Browse files
committed
Initial commit
0 parents  commit 974ec59

82 files changed

Lines changed: 33685 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Docker ignore file for AvaloniaUI.MCP
2+
3+
# Build artifacts
4+
**/bin/
5+
**/obj/
6+
**/publish/
7+
8+
# Visual Studio
9+
.vs/
10+
*.user
11+
*.userosscache
12+
*.sln.docstates
13+
14+
# IDE - VSCode
15+
.vscode/
16+
!.vscode/settings.json
17+
!.vscode/tasks.json
18+
!.vscode/launch.json
19+
!.vscode/extensions.json
20+
21+
# Git
22+
.git/
23+
.gitignore
24+
.gitattributes
25+
26+
# Documentation and markdown files (not needed for runtime)
27+
README.md
28+
CLAUDE.md
29+
*.md
30+
docs/
31+
32+
# Test results
33+
TestResults/
34+
[Tt]est[Rr]esults*/
35+
*.trx
36+
*.coverage
37+
*.coveragexml
38+
39+
# NuGet packages (will be restored during build)
40+
packages/
41+
*.nupkg
42+
*.snupkg
43+
44+
# Docker files
45+
Dockerfile*
46+
.dockerignore
47+
48+
# Environment files
49+
.env*
50+
51+
# Logs
52+
logs/
53+
*.log
54+
55+
# Runtime and debug files
56+
*.pdb
57+
*.exe.config
58+
59+
# OS generated files
60+
.DS_Store
61+
.DS_Store?
62+
._*
63+
.Spotlight-V100
64+
.Trashes
65+
ehthumbs.db
66+
Thumbs.db
67+
68+
# Temporary files
69+
tmp/
70+
temp/
71+
*.tmp
72+
*.temp
73+
*.swp
74+
*.swo
75+
*~
76+
77+
# Jekyll/GitHub Pages (for documentation)
78+
_site/
79+
.sass-cache/
80+
.jekyll-cache/
81+
.jekyll-metadata
82+
_config.yml
83+
index.md

0 commit comments

Comments
 (0)