Files
ClaudeDo/.gitignore
mika kuns edfb702ecc
All checks were successful
Release / release (push) Successful in 33s
fix(data): track EF migration Designer files (were gitignored)
The `*.designer.cs` ignore rule silently excluded EF Core migration
*.Designer.cs files, so only 1 of 11 was committed. Without the Designer
(which carries the [Migration] attribute), EF does not register a migration,
so a fresh clone / CI release build could not apply migrations — e.g.
GetAppSettings failed with "no such column: repo_import_folders", which the
Settings modal surfaced as "Worker offline".

Adds a .gitignore negation for **/Migrations/*.Designer.cs and commits the
10 missing Designer files (incl. the newly authored AddRepoImportFolders).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-01 13:15:25 +02:00

70 lines
882 B
Plaintext

# Local dev worktrees (created by using-git-worktrees skill)
.worktrees/
# .NET build output
bin/
obj/
[Bb]uild/
[Bb]uildResults/
[Oo]ut/
[Ll]og/
[Ll]ogs/
# Visual Studio / Rider / VS Code
.vs/
.vscode/
.idea/
*.suo
*.user
*.userosscache
*.sln.docstates
*.userprefs
# Test results
[Tt]est[Rr]esult*/
*.coverage
*.coveragexml
coverage*.json
coverage*.xml
coverage*.info
# Publish output
publish/
*.[Pp]ublish.xml
PublishProfiles/
# NuGet
*.nupkg
*.snupkg
.nuget/
packages/
!packages/build/
project.lock.json
project.fragment.lock.json
artifacts/
# Avalonia / XAML designer
*.designer.cs
# ...but EF Core migration Designer files are real source and must be tracked
!**/Migrations/*.Designer.cs
# Project-specific
*.db
*.db-shm
*.db-wal
worker.config.json
sandbox/
.claudedo-worktrees/
# OS
Thumbs.db
ehthumbs.db
Desktop.ini
.DS_Store
# Misc
*.log
*.tmp
*.bak
design-time.db