.gitignore 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. .vs/
  9. # Build results
  10. [Dd]ebug/
  11. [Dd]ebugPublic/
  12. [Rr]elease/
  13. [Rr]eleases/
  14. x64/
  15. x86/
  16. build/
  17. bld/
  18. [Bb]in/
  19. [Oo]bj/
  20. # Roslyn cache directories
  21. *.ide/
  22. # MSTest test Results
  23. [Tt]est[Rr]esult*/
  24. [Bb]uild[Ll]og.*
  25. #NUNIT
  26. *.VisualState.xml
  27. TestResult.xml
  28. # Build Results of an ATL Project
  29. [Dd]ebugPS/
  30. [Rr]eleasePS/
  31. dlldata.c
  32. *_i.c
  33. *_p.c
  34. *_i.h
  35. *.ilk
  36. *.meta
  37. *.obj
  38. *.pch
  39. *.pdb
  40. *.pgc
  41. *.pgd
  42. *.rsp
  43. *.sbr
  44. *.tlb
  45. *.tli
  46. *.tlh
  47. *.tmp
  48. *.tmp_proj
  49. *.log
  50. *.vspscc
  51. *.vssscc
  52. .builds
  53. *.pidb
  54. *.svclog
  55. *.scc
  56. # Chutzpah Test files
  57. _Chutzpah*
  58. # Visual C++ cache files
  59. ipch/
  60. *.aps
  61. *.ncb
  62. *.opensdf
  63. *.sdf
  64. *.cachefile
  65. # Visual Studio profiler
  66. *.psess
  67. *.vsp
  68. *.vspx
  69. # TFS 2012 Local Workspace
  70. $tf/
  71. # Guidance Automation Toolkit
  72. *.gpState
  73. # ReSharper is a .NET coding add-in
  74. _ReSharper*/
  75. *.[Rr]e[Ss]harper
  76. *.DotSettings.user
  77. # JustCode is a .NET coding addin-in
  78. .JustCode
  79. # TeamCity is a build add-in
  80. _TeamCity*
  81. # DotCover is a Code Coverage Tool
  82. *.dotCover
  83. # NCrunch
  84. _NCrunch_*
  85. .*crunch*.local.xml
  86. # MightyMoose
  87. *.mm.*
  88. AutoTest.Net/
  89. # Web workbench (sass)
  90. .sass-cache/
  91. # Installshield output folder
  92. [Ee]xpress/
  93. # DocProject is a documentation generator add-in
  94. DocProject/buildhelp/
  95. DocProject/Help/*.HxT
  96. DocProject/Help/*.HxC
  97. DocProject/Help/*.hhc
  98. DocProject/Help/*.hhk
  99. DocProject/Help/*.hhp
  100. DocProject/Help/Html2
  101. DocProject/Help/html
  102. # Click-Once directory
  103. publish/
  104. # Publish Web Output
  105. *.[Pp]ublish.xml
  106. *.azurePubxml
  107. # TODO: Comment the next line if you want to checkin your web deploy settings
  108. # but database connection strings (with potential passwords) will be unencrypted
  109. *.pubxml
  110. *.publishproj
  111. # NuGet Packages
  112. *.nupkg
  113. # The packages folder can be ignored because of Package Restore
  114. **/packages/*
  115. # except build/, which is used as an MSBuild target.
  116. !**/packages/build/
  117. # If using the old MSBuild-Integrated Package Restore, uncomment this:
  118. #!**/packages/repositories.config
  119. # Windows Azure Build Output
  120. csx/
  121. *.build.csdef
  122. # Windows Store app package directory
  123. AppPackages/
  124. # Others
  125. sql/
  126. *.Cache
  127. ClientBin/
  128. [Ss]tyle[Cc]op.*
  129. ~$*
  130. *~
  131. *.dbmdl
  132. *.dbproj.schemaview
  133. *.pfx
  134. *.publishsettings
  135. node_modules/
  136. # RIA/Silverlight projects
  137. Generated_Code/
  138. # Backup & report files from converting an old project file
  139. # to a newer Visual Studio version. Backup files are not needed,
  140. # because we have git ;-)
  141. _UpgradeReport_Files/
  142. Backup*/
  143. UpgradeLog*.XML
  144. UpgradeLog*.htm
  145. # SQL Server files
  146. *.mdf
  147. *.ldf
  148. # Business Intelligence projects
  149. *.rdl.data
  150. *.bim.layout
  151. *.bim_*.settings
  152. # Microsoft Fakes
  153. FakesAssemblies/
  154. # =========================
  155. # Operating System Files
  156. # =========================
  157. # OSX
  158. # =========================
  159. .DS_Store
  160. .AppleDouble
  161. .LSOverride
  162. # Thumbnails
  163. ._*
  164. # Files that might appear on external disk
  165. .Spotlight-V100
  166. .Trashes
  167. # Directories potentially created on remote AFP share
  168. .AppleDB
  169. .AppleDesktop
  170. Network Trash Folder
  171. Temporary Items
  172. .apdisk
  173. # Windows
  174. # =========================
  175. # Windows image file caches
  176. Thumbs.db
  177. ehthumbs.db
  178. # Folder config file
  179. Desktop.ini
  180. # Recycle Bin used on file shares
  181. $RECYCLE.BIN/
  182. # Windows Installer files
  183. *.cab
  184. *.msi
  185. *.msm
  186. *.msp
  187. # Windows shortcuts
  188. *.lnk