.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> C++
  30. # Compiled Object files
  31. *.slo
  32. *.lo
  33. *.o
  34. *.obj
  35. # Precompiled Headers
  36. *.gch
  37. *.pch
  38. # Compiled Dynamic libraries
  39. *.so
  40. *.dylib
  41. *.dll
  42. # Fortran module files
  43. *.mod
  44. # Compiled Static libraries
  45. *.lai
  46. *.la
  47. *.a
  48. *.lib
  49. # Executables
  50. *.exe
  51. *.out
  52. *.app
  53. # ---> C Sharp
  54. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  55. [Bb]in/
  56. [Oo]bj/
  57. # mstest test results
  58. TestResults
  59. ## Ignore Visual Studio temporary files, build results, and
  60. ## files generated by popular Visual Studio add-ons.
  61. # User-specific files
  62. *.suo
  63. *.user
  64. *.sln.docstates
  65. # Build results
  66. [Dd]ebug/
  67. [Rr]elease/
  68. x64/
  69. *_i.c
  70. *_p.c
  71. *.ilk
  72. *.meta
  73. *.obj
  74. *.pch
  75. *.pdb
  76. *.pgc
  77. *.pgd
  78. *.rsp
  79. *.sbr
  80. *.tlb
  81. *.tli
  82. *.tlh
  83. *.tmp
  84. *.log
  85. *.vspscc
  86. *.vssscc
  87. .builds
  88. # Visual C++ cache files
  89. ipch/
  90. *.aps
  91. *.ncb
  92. *.opensdf
  93. *.sdf
  94. # Visual Studio profiler
  95. *.psess
  96. *.vsp
  97. *.vspx
  98. # Guidance Automation Toolkit
  99. *.gpState
  100. # ReSharper is a .NET coding add-in
  101. _ReSharper*
  102. # NCrunch
  103. *.ncrunch*
  104. .*crunch*.local.xml
  105. # Installshield output folder
  106. [Ee]xpress
  107. # DocProject is a documentation generator add-in
  108. DocProject/buildhelp/
  109. DocProject/Help/*.HxT
  110. DocProject/Help/*.HxC
  111. DocProject/Help/*.hhc
  112. DocProject/Help/*.hhk
  113. DocProject/Help/*.hhp
  114. DocProject/Help/Html2
  115. DocProject/Help/html
  116. # Click-Once directory
  117. publish
  118. # Publish Web Output
  119. *.Publish.xml
  120. # NuGet Packages Directory
  121. packages
  122. # Windows Azure Build Output
  123. csx
  124. *.build.csdef
  125. # Windows Store app package directory
  126. AppPackages/
  127. # Others
  128. [Bb]in
  129. [Oo]bj
  130. sql
  131. TestResults
  132. [Tt]est[Rr]esult*
  133. *.Cache
  134. ClientBin
  135. [Ss]tyle[Cc]op.*
  136. ~$*
  137. *.dbmdl
  138. Generated_Code #added for RIA/Silverlight projects
  139. # Backup & report files from converting an old project file to a newer
  140. # Visual Studio version. Backup files are not needed, because we have git ;-)
  141. _UpgradeReport_Files/
  142. Backup*/
  143. UpgradeLog*.XML
  144. # ---> CMake
  145. CMakeCache.txt
  146. CMakeFiles
  147. CMakeScripts
  148. Makefile
  149. cmake_install.cmake
  150. install_manifest.txt