Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 6.1 KB

You have to be logged in to leave a comment. Sign In
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. ##
  4. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  5. # User-specific files
  6. *.rsuser
  7. *.suo
  8. *.user
  9. *.userosscache
  10. *.sln.docstates
  11. # User-specific files (MonoDevelop/Xamarin Studio)
  12. *.userprefs
  13. # Mono auto generated files
  14. mono_crash.*
  15. # Build results
  16. [Dd]ebug/
  17. [Dd]ebugPublic/
  18. [Rr]elease/
  19. [Rr]eleases/
  20. x64/
  21. x86/
  22. [Ww][Ii][Nn]32/
  23. [Aa][Rr][Mm]/
  24. [Aa][Rr][Mm]64/
  25. bld/
  26. [Bb]in/
  27. [Oo]bj/
  28. [Oo]ut/
  29. [Ll]og/
  30. [Ll]ogs/
  31. # Visual Studio 2015/2017 cache/options directory
  32. .vs/
  33. # Uncomment if you have tasks that create the project's static files in wwwroot
  34. #wwwroot/
  35. # Visual Studio 2017 auto generated files
  36. Generated\ Files/
  37. # MSTest test Results
  38. [Tt]est[Rr]esult*/
  39. [Bb]uild[Ll]og.*
  40. # NUnit
  41. *.VisualState.xml
  42. TestResult.xml
  43. nunit-*.xml
  44. # Build Results of an ATL Project
  45. [Dd]ebugPS/
  46. [Rr]eleasePS/
  47. dlldata.c
  48. # Benchmark Results
  49. BenchmarkDotNet.Artifacts/
  50. # .NET Core
  51. project.lock.json
  52. project.fragment.lock.json
  53. artifacts/
  54. # ASP.NET Scaffolding
  55. ScaffoldingReadMe.txt
  56. # StyleCop
  57. StyleCopReport.xml
  58. # Files built by Visual Studio
  59. *_i.c
  60. *_p.c
  61. *_h.h
  62. *.ilk
  63. *.meta
  64. *.obj
  65. *.iobj
  66. *.pch
  67. *.pdb
  68. *.ipdb
  69. *.pgc
  70. *.pgd
  71. *.rsp
  72. *.sbr
  73. *.tlb
  74. *.tli
  75. *.tlh
  76. *.tmp
  77. *.tmp_proj
  78. *_wpftmp.csproj
  79. *.log
  80. *.vspscc
  81. *.vssscc
  82. .builds
  83. *.pidb
  84. *.svclog
  85. *.scc
  86. # Chutzpah Test files
  87. _Chutzpah*
  88. # Visual C++ cache files
  89. ipch/
  90. *.aps
  91. *.ncb
  92. *.opendb
  93. *.opensdf
  94. *.sdf
  95. *.cachefile
  96. *.VC.db
  97. *.VC.VC.opendb
  98. # Visual Studio profiler
  99. *.psess
  100. *.vsp
  101. *.vspx
  102. *.sap
  103. # Visual Studio Trace Files
  104. *.e2e
  105. # TFS 2012 Local Workspace
  106. $tf/
  107. # Guidance Automation Toolkit
  108. *.gpState
  109. # ReSharper is a .NET coding add-in
  110. _ReSharper*/
  111. *.[Rr]e[Ss]harper
  112. *.DotSettings.user
  113. # TeamCity is a build add-in
  114. _TeamCity*
  115. # DotCover is a Code Coverage Tool
  116. *.dotCover
  117. # AxoCover is a Code Coverage Tool
  118. .axoCover/*
  119. !.axoCover/settings.json
  120. # Coverlet is a free, cross platform Code Coverage Tool
  121. coverage*.json
  122. coverage*.xml
  123. coverage*.info
  124. # Visual Studio code coverage results
  125. *.coverage
  126. *.coveragexml
  127. # NCrunch
  128. _NCrunch_*
  129. .*crunch*.local.xml
  130. nCrunchTemp_*
  131. # MightyMoose
  132. *.mm.*
  133. AutoTest.Net/
  134. # Web workbench (sass)
  135. .sass-cache/
  136. # Installshield output folder
  137. [Ee]xpress/
  138. # DocProject is a documentation generator add-in
  139. DocProject/buildhelp/
  140. DocProject/Help/*.HxT
  141. DocProject/Help/*.HxC
  142. DocProject/Help/*.hhc
  143. DocProject/Help/*.hhk
  144. DocProject/Help/*.hhp
  145. DocProject/Help/Html2
  146. DocProject/Help/html
  147. # Click-Once directory
  148. publish/
  149. # Publish Web Output
  150. *.[Pp]ublish.xml
  151. *.azurePubxml
  152. # Note: Comment the next line if you want to checkin your web deploy settings,
  153. # but database connection strings (with potential passwords) will be unencrypted
  154. *.pubxml
  155. *.publishproj
  156. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  157. # checkin your Azure Web App publish settings, but sensitive information contained
  158. # in these scripts will be unencrypted
  159. PublishScripts/
  160. # NuGet Packages
  161. *.nupkg
  162. # NuGet Symbol Packages
  163. *.snupkg
  164. # The packages folder can be ignored because of Package Restore
  165. **/[Pp]ackages/*
  166. # except build/, which is used as an MSBuild target.
  167. !**/[Pp]ackages/build/
  168. # Uncomment if necessary however generally it will be regenerated when needed
  169. #!**/[Pp]ackages/repositories.config
  170. # NuGet v3's project.json files produces more ignorable files
  171. *.nuget.props
  172. *.nuget.targets
  173. # Microsoft Azure Build Output
  174. csx/
  175. *.build.csdef
  176. # Microsoft Azure Emulator
  177. ecf/
  178. rcf/
  179. # Windows Store app package directories and files
  180. AppPackages/
  181. BundleArtifacts/
  182. Package.StoreAssociation.xml
  183. _pkginfo.txt
  184. *.appx
  185. *.appxbundle
  186. *.appxupload
  187. # Visual Studio cache files
  188. # files ending in .cache can be ignored
  189. *.[Cc]ache
  190. # but keep track of directories ending in .cache
  191. !?*.[Cc]ache/
  192. # Others
  193. ClientBin/
  194. ~$*
  195. *~
  196. *.dbmdl
  197. *.dbproj.schemaview
  198. *.jfm
  199. *.pfx
  200. *.publishsettings
  201. orleans.codegen.cs
  202. # Including strong name files can present a security risk
  203. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  204. #*.snk
  205. # Since there are multiple workflows, uncomment next line to ignore bower_components
  206. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  207. #bower_components/
  208. # RIA/Silverlight projects
  209. Generated_Code/
  210. # Backup & report files from converting an old project file
  211. # to a newer Visual Studio version. Backup files are not needed,
  212. # because we have git ;-)
  213. _UpgradeReport_Files/
  214. Backup*/
  215. UpgradeLog*.XML
  216. UpgradeLog*.htm
  217. ServiceFabricBackup/
  218. *.rptproj.bak
  219. # SQL Server files
  220. *.mdf
  221. *.ldf
  222. *.ndf
  223. # Business Intelligence projects
  224. *.rdl.data
  225. *.bim.layout
  226. *.bim_*.settings
  227. *.rptproj.rsuser
  228. *- [Bb]ackup.rdl
  229. *- [Bb]ackup ([0-9]).rdl
  230. *- [Bb]ackup ([0-9][0-9]).rdl
  231. # Microsoft Fakes
  232. FakesAssemblies/
  233. # GhostDoc plugin setting file
  234. *.GhostDoc.xml
  235. # Node.js Tools for Visual Studio
  236. .ntvs_analysis.dat
  237. node_modules/
  238. # Visual Studio 6 build log
  239. *.plg
  240. # Visual Studio 6 workspace options file
  241. *.opt
  242. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  243. *.vbw
  244. # Visual Studio LightSwitch build output
  245. **/*.HTMLClient/GeneratedArtifacts
  246. **/*.DesktopClient/GeneratedArtifacts
  247. **/*.DesktopClient/ModelManifest.xml
  248. **/*.Server/GeneratedArtifacts
  249. **/*.Server/ModelManifest.xml
  250. _Pvt_Extensions
  251. # Paket dependency manager
  252. .paket/paket.exe
  253. paket-files/
  254. # FAKE - F# Make
  255. .fake/
  256. # CodeRush personal settings
  257. .cr/personal
  258. # Python Tools for Visual Studio (PTVS)
  259. __pycache__/
  260. *.pyc
  261. # Cake - Uncomment if you are using it
  262. # tools/**
  263. # !tools/packages.config
  264. # Tabs Studio
  265. *.tss
  266. # Telerik's JustMock configuration file
  267. *.jmconfig
  268. # BizTalk build output
  269. *.btp.cs
  270. *.btm.cs
  271. *.odx.cs
  272. *.xsd.cs
  273. # OpenCover UI analysis results
  274. OpenCover/
  275. # Azure Stream Analytics local run output
  276. ASALocalRun/
  277. # MSBuild Binary and Structured Log
  278. *.binlog
  279. # NVidia Nsight GPU debugger configuration file
  280. *.nvuser
  281. # MFractors (Xamarin productivity tool) working folder
  282. .mfractor/
  283. # Local History for Visual Studio
  284. .localhistory/
  285. # BeatPulse healthcheck temp database
  286. healthchecksdb
  287. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  288. MigrationBackup/
  289. # Ionide (cross platform F# VS Code tools) working folder
  290. .ionide/
  291. # Fody - auto-generated XML schema
  292. FodyWeavers.xsd
  293. .idea/
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...