1
+ # # Ignore environment files
2
+ .env
3
+ .venv
4
+ env /
5
+ venv /
6
+ ENV /
7
+ env.bak /
8
+ venv.bak /
9
+ .env.local
10
+ .env.development.local
11
+ .env.test.local
12
+ .env.production.local
13
+
14
+ # # Ignore Node.Js dependencies
15
+ /node_modules
16
+ /.pnp
17
+ .pnp.js
18
+
19
+ # Ignore PyInstaller
20
+ # Usually these files are written by a python script from a template
21
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
22
+ * .manifest
23
+ * .spec
24
+
25
+ # Ignore pip installer logs
26
+ pip-log.txt
27
+ pip-delete-this-directory.txt
28
+
29
+ # Ignore optional npm cache directory
30
+ .npm
31
+ npm-debug.log *
32
+
33
+ # Ignore logs
34
+ logs
35
+ * .log
36
+ npm-debug.log *
37
+ yarn-debug.log *
38
+ yarn-error.log *
39
+
40
+ # Ignore runtime data
41
+ pids
42
+ * .pid
43
+ * .seed
44
+ * .pid.lock
45
+
46
+ # # Ignore Visual Studio temporary files, build results, and
47
+ # # files generated by popular Visual Studio add-ons.
48
+
49
+ # User-specific files
50
+ * .suo
51
+ * .user
52
+ * .userprefs
53
+ * .sln.docstates
54
+ * .svclog
55
+ .vs /
56
+ .vscode /settings.json
57
+
58
+ # Build results
59
+ [Aa ]rtifacts /
60
+ [Dd ]ebug /
61
+ [Rr ]elease /
62
+ [Bb ]inaries /
63
+ [Bb ]in /
64
+ [Oo ]bj /
65
+ .dotnet /
66
+ .tools /
67
+ .packages /
68
+
69
+ # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
70
+ ! packages /* /build /
71
+
72
+ # Debug artifacts
73
+ launchSettings.json
74
+
75
+ # Prevent accidental re-checkin of NuGet.exe
76
+ NuGet.exe
77
+
78
+ # NuGet restore semaphore
79
+ build /ToolsetPackages /toolsetpackages.semaphore
80
+
81
+ # NuGet package
82
+ src /Tools /UploadNugetZip /* .zip
83
+
84
+ # MSTest test Results
85
+ [Tt ]est [Rr ]esult * /
86
+ [Bb ]uild [Ll ]og. *
87
+ UnitTestResults.html
88
+
89
+ # NuGet V3 artifacts
90
+ * -packages.config
91
+ * .nuget.props
92
+ * .nuget.targets
93
+ project.lock.json
94
+ msbuild.binlog
95
+ * .project.lock.json
96
+
97
+ * _i.c
98
+ * _p.c
99
+ * .ilk
100
+ * .meta
101
+ * .obj
102
+ * .pch
103
+ * .pdb
104
+ * .pgc
105
+ * .pgd
106
+ * .sbr
107
+ * .tlb
108
+ * .tli
109
+ * .tlh
110
+ * .tmp
111
+ * .tmp_proj
112
+ * .log
113
+ * .wrn
114
+ * .vspscc
115
+ * .vssscc
116
+ .builds
117
+ * .pidb
118
+ * .log
119
+ * .scc
120
+
121
+ # Visual Studio cache files
122
+ * .sln.ide /
123
+
124
+ # Visual C++ cache files
125
+ ipch /
126
+ * .aps
127
+ * .ncb
128
+ * .opensdf
129
+ * .sdf
130
+ * .cachefile
131
+ * .VC.opendb
132
+ * .VC.db
133
+
134
+ # Visual Studio profiler
135
+ * .psess
136
+ * .vsp
137
+ * .vspx
138
+
139
+ # Guidance Automation Toolkit
140
+ * .gpState
141
+
142
+ # ReSharper is a .NET coding add-in
143
+ _ReSharper * /
144
+ * . [Rr ]e [Ss ]harper
145
+ * .DotSettings
146
+
147
+ # TeamCity is a build add-in
148
+ _TeamCity *
149
+
150
+ # DotCover is a Code Coverage Tool
151
+ * .dotCover
152
+
153
+ # NCrunch
154
+ * .ncrunch *
155
+ . * crunch * .local.xml
156
+
157
+ # Installshield output folder
158
+ [Ee ]xpress /
159
+
160
+ # DocProject is a documentation generator add-in
161
+ DocProject /buildhelp /
162
+ DocProject /Help /* .HxT
163
+ DocProject /Help /* .HxC
164
+ DocProject /Help /* .hhc
165
+ DocProject /Help /* .hhk
166
+ DocProject /Help /* .hhp
167
+ DocProject /Help /Html2
168
+ DocProject /Help /html
169
+
170
+ # Click-Once directory
171
+ publish /
172
+
173
+ # Publish Web Output
174
+ * .Publish.xml
175
+
176
+ # NuGet Packages Directory
177
+ packages /
178
+
179
+ # Windows Azure Build Output
180
+ csx
181
+ * .build.csdef
182
+
183
+ # Windows Store app package directory
184
+ AppPackages /
185
+
186
+ # Others
187
+ sql /
188
+ * .Cache
189
+ ClientBin /
190
+ [Ss ]tyle [Cc ]op. *
191
+ ~$ *
192
+ * ~
193
+ * .dbmdl
194
+ * . [Pp ]ublish.xml
195
+ * .pfx
196
+ * .publishsettings
197
+
198
+ # RIA/Silverlight projects
199
+ Generated_Code /
200
+
201
+ # Backup & report files from converting an old project file to a newer
202
+ # Visual Studio version. Backup files are not needed, because we have git ;-)
203
+ _UpgradeReport_Files /
204
+ Backup * /
205
+ UpgradeLog * .XML
206
+ UpgradeLog * .htm
207
+
208
+ # SQL Server files
209
+ App_Data /* .mdf
210
+ App_Data /* .ldf
211
+
212
+
213
+ # LightSwitch generated files
214
+ GeneratedArtifacts /
215
+ _Pvt_Extensions /
216
+ ModelManifest.xml
217
+
218
+ # =========================
219
+ # Windows detritus
220
+ # =========================
221
+
222
+ # Windows image file caches
223
+ Thumbs.db
224
+ ehthumbs.db
225
+
226
+ # Folder config file
227
+ Desktop.ini
228
+
229
+ # Recycle Bin used on file shares
230
+ $RECYCLE.BIN /
231
+
232
+ # Mac desktop service store files
233
+ .DS_Store
234
+
235
+ # JetBrains Rider
236
+ .idea /
237
+
238
+ # WPF temp projects
239
+ * wpftmp. *
0 commit comments