-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
114 lines (99 loc) · 1.98 KB
/
.gitignore
File metadata and controls
114 lines (99 loc) · 1.98 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
###############################################################################
# .NET / Visual Studio / Rider / VS Code
###############################################################################
# Build results
[Bb]in/
[Oo]bj/
[Dd]ebug/
[Rr]elease/
x64/
x86/
[Aa]rm/
[Aa]rm64/
[Ll]og/
[Ll]ogs/
# Visual Studio files
.vs/
*.user
*.suo
*.userosscache
*.sln.docstates
*.VC.db
*.VC.VC.opendb
# Visual Studio Code
.vscode/
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/launch.json
!.vscode/tasks.json
# Rider / JetBrains
.idea/
*.sln.iml
# DotCover / ReSharper
*.dotCover
_ReSharper*/
*.resharper
*.Resharper.user
# Test results / coverage
[Tt]est[Rr]esult*/
*.trx
coverage/
coverage.*.xml
coverage.*.json
*.coverage
*.coveragexml
# NuGet
*.nupkg
*.snupkg
.nuget/packages/
.nuget/http-cache/
.nuget/plugins-cache/
# If you use packages.lock.json and want it committed, REMOVE this line:
packages.lock.json
# Publish / artifacts
**/[Pp]ublishOutput*/
**/[Pp]ublished*/
**/AppPackages/
*.appx
*.appxbundle
*.msix
*.msixbundle
# ASP.NET / IIS / logs
*.log
*.tmp
*.temp
*.pdb
*.cache
*.swp
*.swo
# Local settings / secrets
appsettings.*.json
!appsettings.json
!appsettings.Development.json
secrets.json
*.secrets
.env
.env.*
# User-specific files
*.rsuser
*.sln.DotSettings.user
# OS junk
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
###############################################################################
# Optional: Azure Functions / local tooling
###############################################################################
local.settings.json
###############################################################################
# Optional: Containers
###############################################################################
**/docker-compose.override.yml
###############################################################################
# Optional: node (if you have SPA projects)
###############################################################################
node_modules/
dist/
out/
.next/