.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. .vs
  4. *.iml
  5. .gradle
  6. /local.properties
  7. /.idea/caches/build_file_checksums.ser
  8. /.idea/libraries
  9. /.idea/modules.xml
  10. /.idea/workspace.xml
  11. .DS_Store
  12. /captures
  13. .externalNativeBuild
  14. # User-specific files
  15. *.suo
  16. *.user
  17. *.sln.docstates
  18. # Build results
  19. [Dd]ebug/
  20. [Rr]elease/
  21. x64/
  22. Win32-[Dd]ebug/
  23. Win32-[Rr]elease/
  24. [Bb]in/
  25. [Oo]bj/
  26. [Tt]emp/
  27. ipch/
  28. [Tt]mp/
  29. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  30. !packages/*/build/
  31. # MSTest test Results
  32. [Tt]est[Rr]esult*/
  33. [Bb]uild[Ll]og.*
  34. *_i.c
  35. *_p.c
  36. *.ilk
  37. *.meta
  38. *.obj
  39. *.pch
  40. *.pdb
  41. *.pgc
  42. *.pgd
  43. *.rsp
  44. *.sbr
  45. *.tlb
  46. *.tli
  47. *.tlh
  48. *.tmp
  49. *.tmp_proj
  50. *.log
  51. *.vspscc
  52. *.vssscc
  53. .builds
  54. *.pidb
  55. *.log
  56. *.scc
  57. *.tlog
  58. # Visual C++ cache files
  59. ipch/
  60. *.aps
  61. *.ncb
  62. *.opensdf
  63. *.sdf
  64. *.cachefile
  65. # Visual Studio profiler
  66. *.psess
  67. *.vsp
  68. *.vspx
  69. # Guidance Automation Toolkit
  70. *.gpState
  71. # ReSharper is a .NET coding add-in
  72. _ReSharper*/
  73. *.[Rr]e[Ss]harper
  74. # TeamCity is a build add-in
  75. _TeamCity*
  76. # DotCover is a Code Coverage Tool
  77. *.dotCover
  78. # NCrunch
  79. *.ncrunch*
  80. .*crunch*.local.xml
  81. # Installshield output folder
  82. [Ee]xpress/
  83. # DocProject is a documentation generator add-in
  84. DocProject/buildhelp/
  85. DocProject/Help/*.HxT
  86. DocProject/Help/*.HxC
  87. DocProject/Help/*.hhc
  88. DocProject/Help/*.hhk
  89. DocProject/Help/*.hhp
  90. DocProject/Help/Html2
  91. DocProject/Help/html
  92. # Click-Once directory
  93. publish/
  94. # Publish Web Output
  95. *.Publish.xml
  96. # NuGet Packages Directory
  97. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  98. #packages/
  99. # Windows Azure Build Output
  100. csx
  101. *.build.csdef
  102. # Windows Store app package directory
  103. AppPackages/
  104. # Others
  105. sql/
  106. *.Cache
  107. ClientBin/
  108. [Ss]tyle[Cc]op.*
  109. ~$*
  110. *~
  111. *.dbmdl
  112. *.[Pp]ublish.xml
  113. *.pfx
  114. *.publishsettings
  115. # RIA/Silverlight projects
  116. Generated_Code/
  117. # Backup & report files from converting an old project file to a newer
  118. # Visual Studio version. Backup files are not needed, because we have git ;-)
  119. _UpgradeReport_Files/
  120. Backup*/
  121. UpgradeLog*.XML
  122. UpgradeLog*.htm
  123. # SQL Server files
  124. App_Data/*.mdf
  125. App_Data/*.ldf
  126. #LightSwitch generated files
  127. GeneratedArtifacts/
  128. _Pvt_Extensions/
  129. ModelManifest.xml
  130. # =========================
  131. # Windows detritus
  132. # =========================
  133. # Windows image file caches
  134. Thumbs.db
  135. ehthumbs.db
  136. # Folder config file
  137. Desktop.ini
  138. # Recycle Bin used on file shares
  139. $RECYCLE.BIN/
  140. # Mac desktop service store files
  141. .DS_Store
  142. # CMake
  143. out/
  144. build/
  145. CMakeCache.txt
  146. CMakeFiles
  147. CMakeScripts
  148. Testing
  149. Makefile
  150. cmake_install.cmake
  151. install_manifest.txt
  152. compile_commands.json
  153. CTestTestfile.cmake
  154. _deps