.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #################
  2. ## Visual Studio
  3. #################
  4. ## Ignore Visual Studio temporary files, build results, and
  5. ## files generated by popular Visual Studio add-ons.
  6. # User-specific files
  7. *.suo
  8. *.user
  9. *.sln.docstates
  10. # Build results
  11. [Dd]ebug/
  12. [Rr]elease/
  13. x64/
  14. build/
  15. [Bb]in/
  16. [Oo]bj/
  17. # MSTest test Results
  18. [Tt]est[Rr]esult*/
  19. [Bb]uild[Ll]og.*
  20. *_i.c
  21. *_p.c
  22. *.ilk
  23. *.meta
  24. *.obj
  25. *.pch
  26. *.pdb
  27. *.pgc
  28. *.pgd
  29. *.rsp
  30. *.sbr
  31. *.tlb
  32. *.tli
  33. *.tlh
  34. *.tmp
  35. *.tmp_proj
  36. *.log
  37. *.vspscc
  38. *.vssscc
  39. .builds
  40. *.pidb
  41. *.log
  42. *.scc
  43. # Visual C++ cache files
  44. ipch/
  45. *.aps
  46. *.ncb
  47. *.opensdf
  48. *.sdf
  49. *.cachefile
  50. # Visual Studio profiler
  51. *.psess
  52. *.vsp
  53. *.vspx
  54. # Guidance Automation Toolkit
  55. *.gpState
  56. # ReSharper is a .NET coding add-in
  57. _ReSharper*/
  58. *.[Rr]e[Ss]harper
  59. # TeamCity is a build add-in
  60. _TeamCity*
  61. # DotCover is a Code Coverage Tool
  62. *.dotCover
  63. # NCrunch
  64. *.ncrunch*
  65. .*crunch*.local.xml
  66. # Installshield output folder
  67. [Ee]xpress/
  68. # DocProject is a documentation generator add-in
  69. DocProject/buildhelp/
  70. DocProject/Help/*.HxT
  71. DocProject/Help/*.HxC
  72. DocProject/Help/*.hhc
  73. DocProject/Help/*.hhk
  74. DocProject/Help/*.hhp
  75. DocProject/Help/Html2
  76. DocProject/Help/html
  77. # Click-Once directory
  78. publish/
  79. # Publish Web Output
  80. *.Publish.xml
  81. *.pubxml
  82. *.publishproj
  83. # NuGet Packages Directory
  84. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  85. #packages/
  86. # Windows Azure Build Output
  87. csx
  88. *.build.csdef
  89. # Windows Store app package directory
  90. AppPackages/
  91. # Others
  92. sql/
  93. *.Cache
  94. ClientBin/
  95. [Ss]tyle[Cc]op.*
  96. ~$*
  97. *~
  98. *.dbmdl
  99. *.[Pp]ublish.xml
  100. *.pfx
  101. *.publishsettings
  102. # RIA/Silverlight projects
  103. Generated_Code/
  104. # Backup & report files from converting an old project file to a newer
  105. # Visual Studio version. Backup files are not needed, because we have git ;-)
  106. _UpgradeReport_Files/
  107. Backup*/
  108. UpgradeLog*.XML
  109. UpgradeLog*.htm
  110. # SQL Server files
  111. App_Data/*.mdf
  112. App_Data/*.ldf
  113. #############
  114. ## Windows detritus
  115. #############
  116. # Windows image file caches
  117. Thumbs.db
  118. ehthumbs.db
  119. # Folder config file
  120. Desktop.ini
  121. # Recycle Bin used on file shares
  122. $RECYCLE.BIN/
  123. # Mac crap
  124. .DS_Store