.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. # Guidance Automation Toolkit
  75. *.gpState
  76. # ReSharper is a .NET coding add-in
  77. _ReSharper*
  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. packages
  98. # Windows Azure Build Output
  99. csx
  100. *.build.csdef
  101. # Windows Store app package directory
  102. AppPackages/
  103. # Others
  104. [Bb]in
  105. [Oo]bj
  106. sql
  107. TestResults
  108. [Tt]est[Rr]esult*
  109. *.Cache
  110. ClientBin
  111. [Ss]tyle[Cc]op.*
  112. ~$*
  113. *.dbmdl
  114. Generated_Code #added for RIA/Silverlight projects
  115. # Backup & report files from converting an old project file to a newer
  116. # Visual Studio version. Backup files are not needed, because we have git ;-)
  117. _UpgradeReport_Files/
  118. Backup*/
  119. UpgradeLog*.XML