.gitignore 2.0 KB

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