.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. # ---> C Sharp
  2. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  3. [Bb]in/
  4. [Oo]bj/
  5. # mstest test results
  6. TestResults
  7. ## Ignore Visual Studio temporary files, build results, and
  8. ## files generated by popular Visual Studio add-ons.
  9. # User-specific files
  10. *.suo
  11. *.user
  12. *.sln.docstates
  13. # Build results
  14. [Dd]ebug/
  15. [Rr]elease/
  16. x64/
  17. *_i.c
  18. *_p.c
  19. *.ilk
  20. *.meta
  21. *.obj
  22. *.pch
  23. *.pdb
  24. *.pgc
  25. *.pgd
  26. *.rsp
  27. *.sbr
  28. *.tlb
  29. *.tli
  30. *.tlh
  31. *.tmp
  32. *.log
  33. *.vspscc
  34. *.vssscc
  35. .builds
  36. # Visual C++ cache files
  37. ipch/
  38. *.aps
  39. *.ncb
  40. *.opensdf
  41. *.sdf
  42. # Visual Studio profiler
  43. *.psess
  44. *.vsp
  45. *.vspx
  46. # Guidance Automation Toolkit
  47. *.gpState
  48. # ReSharper is a .NET coding add-in
  49. _ReSharper*
  50. # NCrunch
  51. *.ncrunch*
  52. .*crunch*.local.xml
  53. # Installshield output folder
  54. [Ee]xpress
  55. # DocProject is a documentation generator add-in
  56. DocProject/buildhelp/
  57. DocProject/Help/*.HxT
  58. DocProject/Help/*.HxC
  59. DocProject/Help/*.hhc
  60. DocProject/Help/*.hhk
  61. DocProject/Help/*.hhp
  62. DocProject/Help/Html2
  63. DocProject/Help/html
  64. # Click-Once directory
  65. publish
  66. # Publish Web Output
  67. *.Publish.xml
  68. # NuGet Packages Directory
  69. packages
  70. # Windows Azure Build Output
  71. csx
  72. *.build.csdef
  73. # Windows Store app package directory
  74. AppPackages/
  75. # Others
  76. [Bb]in
  77. [Oo]bj
  78. sql
  79. TestResults
  80. [Tt]est[Rr]esult*
  81. *.Cache
  82. ClientBin
  83. [Ss]tyle[Cc]op.*
  84. ~$*
  85. *.dbmdl
  86. Generated_Code #added for RIA/Silverlight projects
  87. # Backup & report files from converting an old project file to a newer
  88. # Visual Studio version. Backup files are not needed, because we have git ;-)
  89. _UpgradeReport_Files/
  90. Backup*/
  91. UpgradeLog*.XML
  92. # ---> Dreamweaver
  93. # DW Dreamweaver added files
  94. _notes
  95. dwsync.xml
  96. # ---> Eclipse
  97. *.pydevproject
  98. .metadata
  99. .gradle
  100. bin/
  101. tmp/
  102. *.tmp
  103. *.bak
  104. *.swp
  105. *~.nib
  106. local.properties
  107. .settings/
  108. .loadpath
  109. # Eclipse Core
  110. .project
  111. # External tool builders
  112. .externalToolBuilders/
  113. # Locally stored "Eclipse launch configurations"
  114. *.launch
  115. # CDT-specific
  116. .cproject
  117. # JDT-specific (Eclipse Java Development Tools)
  118. .classpath
  119. # Java annotation processor (APT)
  120. .factorypath
  121. # PDT-specific
  122. .buildpath
  123. # sbteclipse plugin
  124. .target
  125. # TeXlipse plugin
  126. .texlipse
  127. # ---> Java
  128. *.class
  129. # Mobile Tools for Java (J2ME)
  130. .mtj.tmp/
  131. # Package Files #
  132. *.jar
  133. *.war
  134. *.ear
  135. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  136. hs_err_pid*
  137. # ---> Maven
  138. target/
  139. pom.xml.tag
  140. pom.xml.releaseBackup
  141. pom.xml.versionsBackup
  142. pom.xml.next
  143. release.properties
  144. dependency-reduced-pom.xml
  145. buildNumber.properties
  146. .mvn/timing.properties
  147. # ---> Windows
  148. # Windows image file caches
  149. Thumbs.db
  150. ehthumbs.db
  151. # Folder config file
  152. Desktop.ini
  153. # Recycle Bin used on file shares
  154. $RECYCLE.BIN/
  155. # Windows Installer files
  156. *.cab
  157. *.msi
  158. *.msm
  159. *.msp
  160. # Windows shortcuts
  161. *.lnk