.gitignore 8.4 KB

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