-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (32 loc) · 725 Bytes
/
Copy path.gitignore
File metadata and controls
42 lines (32 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# .NET build artifacts — regenerated by `dotnet build`/`publish`.
**/bin/
**/obj/
# Test runs
**/TestResults/
# Visual Studio / Rider / VSCode noise
.vs/
.vscode/
.idea/
*.user
*.suo
# Secrets — NEVER commit. .env.example is the documented template.
.env
.env.local
.env.*.local
# OS junk
.DS_Store
Thumbs.db
# Logs
*.log
# Add-in / manifest staging (built/uploaded outside of git)
addin/
# Tool/session state from local agents — not part of the project
.omc/
.remember/
.claude/
# Optional: NuGet local cache if someone configures one in-tree
.nuget/
# EF Core scratch (if anyone runs `dotnet ef migrations script` etc.)
*.sql.tmp
# Internal docs (ADRs, issues, PRD) — not part of the public project
docs/