.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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 Sharp
  30. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  31. [Bb]in/
  32. [Oo]bj/
  33. # mstest test results
  34. TestResults
  35. ## Ignore Visual Studio temporary files, build results, and
  36. ## files generated by popular Visual Studio add-ons.
  37. # User-specific files
  38. *.suo
  39. *.user
  40. *.sln.docstates
  41. # Build results
  42. [Dd]ebug/
  43. [Rr]elease/
  44. x64/
  45. *_i.c
  46. *_p.c
  47. *.ilk
  48. *.meta
  49. *.obj
  50. *.pch
  51. *.pdb
  52. *.pgc
  53. *.pgd
  54. *.rsp
  55. *.sbr
  56. *.tlb
  57. *.tli
  58. *.tlh
  59. *.tmp
  60. *.log
  61. *.vspscc
  62. *.vssscc
  63. .builds
  64. # Visual C++ cache files
  65. ipch/
  66. *.aps
  67. *.ncb
  68. *.opensdf
  69. *.sdf
  70. # Visual Studio profiler
  71. *.psess
  72. *.vsp
  73. *.vspx
  74. .vs
  75. .cr
  76. # Guidance Automation Toolkit
  77. *.gpState
  78. # ReSharper is a .NET coding add-in
  79. _ReSharper*
  80. # NCrunch
  81. *.ncrunch*
  82. .*crunch*.local.xml
  83. # Installshield output folder
  84. [Ee]xpress
  85. # DocProject is a documentation generator add-in
  86. DocProject/buildhelp/
  87. DocProject/Help/*.HxT
  88. DocProject/Help/*.HxC
  89. DocProject/Help/*.hhc
  90. DocProject/Help/*.hhk
  91. DocProject/Help/*.hhp
  92. DocProject/Help/Html2
  93. DocProject/Help/html
  94. # Click-Once directory
  95. publish
  96. # Publish Web Output
  97. *.Publish.xml
  98. # NuGet Packages Directory
  99. packages
  100. # Windows Azure Build Output
  101. csx
  102. *.build.csdef
  103. # Windows Store app package directory
  104. AppPackages/
  105. # Others
  106. [Bb]in
  107. [Oo]bj
  108. sql
  109. TestResults
  110. [Tt]est[Rr]esult*
  111. *.Cache
  112. ClientBin
  113. [Ss]tyle[Cc]op.*
  114. ~$*
  115. *.dbmdl
  116. Generated_Code #added for RIA/Silverlight projects
  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. # ---> C++
  123. # Compiled Object files
  124. *.slo
  125. *.lo
  126. *.o
  127. *.obj
  128. # Precompiled Headers
  129. *.gch
  130. *.pch
  131. # Compiled Dynamic libraries
  132. *.so
  133. *.dylib
  134. *.dll
  135. # Fortran module files
  136. *.mod
  137. # Compiled Static libraries
  138. *.lai
  139. *.la
  140. *.a
  141. *.lib
  142. # Executables
  143. *.exe
  144. *.out
  145. *.app