.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. *.sln.docstates
  7. # Build results
  8. [Dd]ebug/
  9. [Rr]elease/
  10. x64/
  11. build/
  12. [Bb]in/
  13. [Oo]bj/
  14. # MSTest test Results
  15. [Tt]est[Rr]esult*/
  16. [Bb]uild[Ll]og.*
  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. *.tmp_proj
  33. *.log
  34. *.vspscc
  35. *.vssscc
  36. .builds
  37. *.pidb
  38. *.log
  39. *.scc
  40. # Visual C++ cache files
  41. ipch/
  42. *.aps
  43. *.ncb
  44. *.opensdf
  45. *.sdf
  46. *.cachefile
  47. # Visual Studio profiler
  48. *.psess
  49. *.vsp
  50. *.vspx
  51. # Guidance Automation Toolkit
  52. *.gpState
  53. # ReSharper is a .NET coding add-in
  54. _ReSharper*/
  55. *.[Rr]e[Ss]harper
  56. # TeamCity is a build add-in
  57. _TeamCity*
  58. # DotCover is a Code Coverage Tool
  59. *.dotCover
  60. # NCrunch
  61. *.ncrunch*
  62. .*crunch*.local.xml
  63. # Installshield output folder
  64. [Ee]xpress/
  65. # DocProject is a documentation generator add-in
  66. DocProject/buildhelp/
  67. DocProject/Help/*.HxT
  68. DocProject/Help/*.HxC
  69. DocProject/Help/*.hhc
  70. DocProject/Help/*.hhk
  71. DocProject/Help/*.hhp
  72. DocProject/Help/Html2
  73. DocProject/Help/html
  74. # Click-Once directory
  75. publish/
  76. # Publish Web Output
  77. *.Publish.xml
  78. *.pubxml
  79. # NuGet Packages Directory
  80. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  81. #packages/
  82. # Windows Azure Build Output
  83. csx
  84. *.build.csdef
  85. # Windows Store app package directory
  86. AppPackages/
  87. # Others
  88. sql/
  89. *.Cache
  90. ClientBin/
  91. [Ss]tyle[Cc]op.*
  92. ~$*
  93. *~
  94. *.dbmdl
  95. *.[Pp]ublish.xml
  96. *.pfx
  97. *.publishsettings
  98. # RIA/Silverlight projects
  99. Generated_Code/
  100. # Backup & report files from converting an old project file to a newer
  101. # Visual Studio version. Backup files are not needed, because we have git ;-)
  102. _UpgradeReport_Files/
  103. Backup*/
  104. UpgradeLog*.XML
  105. UpgradeLog*.htm
  106. # SQL Server files
  107. App_Data/*.mdf
  108. App_Data/*.ldf
  109. #LightSwitch generated files
  110. GeneratedArtifacts/
  111. _Pvt_Extensions/
  112. ModelManifest.xml
  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 desktop service store files
  124. .DS_Store