Import des bestehenden Projektstands in Git. - .NET 10 WinForms Anwendung (Multi-Agent / Tool-System) - .gitignore fuer Build-Artefakte, Secrets und Runtime-Daten ergaenzt Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
47 lines
800 B
Plaintext
47 lines
800 B
Plaintext
# ---- Build results ----
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Oo]ut/
|
|
[Ll]og/
|
|
[Ll]ogs/
|
|
|
|
# ---- Visual Studio / Rider ----
|
|
.vs/
|
|
.idea/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
*.userprefs
|
|
|
|
# ---- Build / restore artifacts ----
|
|
project.lock.json
|
|
project.fragment.lock.json
|
|
artifacts/
|
|
*.nupkg
|
|
*.snupkg
|
|
msbuild.log
|
|
msbuild.err
|
|
msbuild.wrn
|
|
|
|
# ---- Deploy / packaging output ----
|
|
deploy/*.zip
|
|
|
|
# ---- Runtime instance/agent data (created next to the binary) ----
|
|
Instances/
|
|
data/
|
|
|
|
# ---- OS files ----
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
.DS_Store
|
|
|
|
# ---- Secrets / local-only settings ----
|
|
# Local Claude Code settings contain machine-specific permissions and API keys
|
|
.claude/settings.local.json
|
|
# Real credential configs (commit *.template / placeholder configs only)
|
|
*.secrets.json
|
|
appsettings.*.local.json
|