.gitignore 2.6 KB

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