.gitignore 2.3 KB

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